diff --git a/.github/workflows/create-hotfix-branch.yml b/.github/workflows/create-hotfix-branch.yml index aa928b4646..d1397cb608 100644 --- a/.github/workflows/create-hotfix-branch.yml +++ b/.github/workflows/create-hotfix-branch.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest # Only allow these users to create new hotfix branch from 'main' - if: github.ref == 'refs/heads/main' && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs' || github.actor == 'sandeepdsvs' || github.actor == 'shrouti1507' || github.actor == 'anantjain45823') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'saikumarrs' || github.triggering_actor == 'sandeepdsvs' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'anantjain45823') + if: github.ref == 'refs/heads/main' && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs' || github.actor == 'sandeepdsvs' || github.actor == 'shrouti1507' || github.actor == 'anantjain45823' || github.actor == 'chandumlg' || github.actor == 'mihir-4116') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'saikumarrs' || github.triggering_actor == 'sandeepdsvs' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'anantjain45823' || github.triggering_actor == 'chandumlg' || github.triggering_actor == 'mihir-4116') steps: - name: Create Branch uses: peterjgrainger/action-create-branch@v2.4.0 diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 044885316d..0657561f2b 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest # Only allow release stakeholders to initiate releases - if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/hotfix/')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs' || github.actor == 'sandeepdsvs' || github.actor == 'shrouti1507' || github.actor == 'anantjain45823') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'saikumarrs' || github.triggering_actor == 'sandeepdsvs' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'anantjain45823') + if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/hotfix/')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs' || github.actor == 'sandeepdsvs' || github.actor == 'shrouti1507' || github.actor == 'anantjain45823' || github.actor == 'chandumlg' || github.actor == 'mihir-4116') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'saikumarrs' || github.triggering_actor == 'sandeepdsvs' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'anantjain45823' || github.triggering_actor == 'chandumlg' || github.triggering_actor == 'mihir-4116') steps: - name: Checkout uses: actions/checkout@v3.5.3 diff --git a/.github/workflows/prepare-for-prod-deploy.yml b/.github/workflows/prepare-for-prod-deploy.yml index def8f17643..0a2939ac2c 100644 --- a/.github/workflows/prepare-for-prod-deploy.yml +++ b/.github/workflows/prepare-for-prod-deploy.yml @@ -126,7 +126,7 @@ jobs: git commit -m "chore: upgrade shared transformers to $TAG_NAME" git push -u origin shared-transformer-$TAG_NAME - hub pull-request -m "chore: upgrade shared transformers to $TAG_NAME" + gh pr create --fill - name: Update Helm Chart and Raise Pull Request For Hosted Transformer env: @@ -143,4 +143,4 @@ jobs: git commit -m "chore: upgrade hosted transformer to $TAG_NAME" git push -u origin hosted-transformer-$TAG_NAME - hub pull-request -m "chore: upgrade hosted transformer to $TAG_NAME" + gh pr create --fill diff --git a/.github/workflows/prepare-for-prod-rollback.yml b/.github/workflows/prepare-for-prod-rollback.yml index 3a2a60abc4..9ac144a21e 100644 --- a/.github/workflows/prepare-for-prod-rollback.yml +++ b/.github/workflows/prepare-for-prod-rollback.yml @@ -10,7 +10,7 @@ jobs: # Only allow to be deployed from tags and main branch # Only allow specific actors to trigger - if: (startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/main')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'saikumarrs') + if: (startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/main')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs' || github.actor == 'chandumlg') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'saikumarrs' || github.triggering_actor == 'chandumlg') steps: - name: Get Target Version @@ -56,4 +56,4 @@ jobs: git commit -m "chore: rollback shared transformers to ${{ steps.target-version.outputs.tag_name }}" git push -u origin shared-transformer-rollback-${{ steps.target-version.outputs.tag_name }} - hub pull-request -m "chore: rollback shared transformers to ${{ steps.target-version.outputs.tag_name }}" + gh pr create --fill diff --git a/.github/workflows/prepare-for-prod-ut-deploy.yml b/.github/workflows/prepare-for-prod-ut-deploy.yml index bac768883e..1cb300512c 100644 --- a/.github/workflows/prepare-for-prod-ut-deploy.yml +++ b/.github/workflows/prepare-for-prod-ut-deploy.yml @@ -111,7 +111,7 @@ jobs: git commit -m "chore: upgrade shared user-transformers to $UT_TAG_NAME" git push -u origin shared-user-transformer-$UT_TAG_NAME - hub pull-request -m "chore: upgrade shared user-transformers to $UT_TAG_NAME" + gh pr create --fill - name: Update Helm Chart and Raise Pull Request For Hosted Transformer env: @@ -128,4 +128,4 @@ jobs: git commit -m "chore: upgrade hosted user-transformer to $UT_TAG_NAME" git push -u origin hosted-user-transformer-$UT_TAG_NAME - hub pull-request -m "chore: upgrade hosted user-transformer to $UT_TAG_NAME" + gh pr create --fill diff --git a/.github/workflows/prepare-for-staging-deploy.yml b/.github/workflows/prepare-for-staging-deploy.yml index 66c27fbfd0..37224121bf 100644 --- a/.github/workflows/prepare-for-staging-deploy.yml +++ b/.github/workflows/prepare-for-staging-deploy.yml @@ -120,5 +120,5 @@ jobs: git commit -m "chore: upgrade staging env transformers to \"$TAG_NAME\"" git push -u origin $BRANCH_NAME - hub pull-request -m "chore: upgrade staging env transformers to \"$TAG_NAME\"" + gh pr create --fill fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 12690b81ff..08d7a89e63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,71 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.46.4](https://github.com/rudderlabs/rudder-transformer/compare/v1.46.3...v1.46.4) (2023-10-20) + + +### Bug Fixes + +* **hs:** time stamp and contact not found issue ([391c7cd](https://github.com/rudderlabs/rudder-transformer/commit/391c7cdc5576152576bbd2c6d335a04ce6795833)) + +### [1.46.3](https://github.com/rudderlabs/rudder-transformer/compare/v1.46.2...v1.46.3) (2023-10-20) + + +### Bug Fixes + +* deduplication key issue ([#2757](https://github.com/rudderlabs/rudder-transformer/issues/2757)) ([bc76305](https://github.com/rudderlabs/rudder-transformer/commit/bc76305e3fcc3c9ac69e639e90a37499566d0837)) + +### [1.46.2](https://github.com/rudderlabs/rudder-transformer/compare/v1.46.1...v1.46.2) (2023-10-19) + + +### Bug Fixes + +* do not send 298 event for aborted ones in ut ([d414064](https://github.com/rudderlabs/rudder-transformer/commit/d414064aac1c8d769607346bc48b8db549e7a8dc)) + +### [1.46.1](https://github.com/rudderlabs/rudder-transformer/compare/v1.46.0...v1.46.1) (2023-10-19) + +### Bug Fixes + +* add gzip support compatibility ([#2745](https://github.com/rudderlabs/rudder-transformer/issues/2745)) ([d72410f](https://github.com/rudderlabs/rudder-transformer/commit/d72410f7962e702218be3c2414de62341ca29e39)) + +## [1.46.0](https://github.com/rudderlabs/rudder-transformer/compare/v1.45.3...v1.46.0) (2023-10-18) + + +### Features + +* enhancement: snapchat_conversion add new fields ([#2721](https://github.com/rudderlabs/rudder-transformer/issues/2721)) ([45da19d](https://github.com/rudderlabs/rudder-transformer/commit/45da19db1e583d80f9fc5b508316f7a8bdd415b6)) +* facebook pixel audit refactor ([#2713](https://github.com/rudderlabs/rudder-transformer/issues/2713)) ([43e1a61](https://github.com/rudderlabs/rudder-transformer/commit/43e1a61e19ad8b9c0fb999fe900b91347acb7ef8)) +* mixpanel gzip support for import endpoint ([#2667](https://github.com/rudderlabs/rudder-transformer/issues/2667)) ([6b6bb66](https://github.com/rudderlabs/rudder-transformer/commit/6b6bb6633ed26d466bd80d04ae2c008d1435faca)) +* onboard facebook_conversions destination ([#2720](https://github.com/rudderlabs/rudder-transformer/issues/2720)) ([5269af4](https://github.com/rudderlabs/rudder-transformer/commit/5269af47cdbceefec16be3b44910ca27aea35c35)) +* onboard source ortto ([#2693](https://github.com/rudderlabs/rudder-transformer/issues/2693)) ([4682268](https://github.com/rudderlabs/rudder-transformer/commit/4682268d8396a40685a343a5c4f3978e7316d2d3)) + + +### Bug Fixes + +* fix getFbGenderVal function ([#2724](https://github.com/rudderlabs/rudder-transformer/issues/2724)) ([3aabe81](https://github.com/rudderlabs/rudder-transformer/commit/3aabe81252a09010d2b2e54e44c32e2c6302c057)) + +### [1.45.3](https://github.com/rudderlabs/rudder-transformer/compare/v1.45.2...v1.45.3) (2023-10-17) + + +### Bug Fixes + +* ut metadata map ts type ([c8d3882](https://github.com/rudderlabs/rudder-transformer/commit/c8d3882baccc57d7b892c55ff9811c951afb5ec6)) + +### [1.45.2](https://github.com/rudderlabs/rudder-transformer/compare/v1.45.1...v1.45.2) (2023-10-17) + + +### Bug Fixes + +* add event metadata to 298 status code responses ([f0493dc](https://github.com/rudderlabs/rudder-transformer/commit/f0493dccfd47bfe1897ebcec27141e2df31393c0)) + +### [1.45.1](https://github.com/rudderlabs/rudder-transformer/compare/v1.45.0...v1.45.1) (2023-10-17) + + +### Bug Fixes + +* **clevertap:** invalid parameters ordering issue ([a70d4db](https://github.com/rudderlabs/rudder-transformer/commit/a70d4db57b302abc710907aadb8570944d54165a)) +* **clevertap:** parameters ordering issue ([#2727](https://github.com/rudderlabs/rudder-transformer/issues/2727)) ([bd6e096](https://github.com/rudderlabs/rudder-transformer/commit/bd6e096db3dc6b9bd2d607084b8a38ff315fab9c)) + ## [1.45.0](https://github.com/rudderlabs/rudder-transformer/compare/v1.44.2...v1.45.0) (2023-10-11) diff --git a/github-release.config.js b/github-release.config.js deleted file mode 100644 index df269d8a02..0000000000 --- a/github-release.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - gitRawCommitsOpts: { - merges: null, - }, -}; diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000000..875c8f8893 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,197 @@ +// For a detailed explanation regarding each configuration property, visit: +// https://jestjs.io/docs/en/configuration.html + +module.exports = { + // All imported modules in your tests should be mocked automatically + // automock: false, + + // Stop running tests after `n` failures + bail: 1, + + // Respect "browser" field in package.json when resolving modules + // browser: false, + + // The directory where Jest should store its cached dependency information + // cacheDirectory: "/private/var/folders/bj/xt4sffgd21z57fxhvqrd30_80000gn/T/jest_dx", + + // Automatically clear mock calls and instances between every test + // clearMocks: false, + + // Indicates whether the coverage information should be collected while executing the test + collectCoverage: false, + + // An array of glob patterns indicating a set of files for which coverage information should be collected + // collectCoverageFrom: null, + + // The directory where Jest should output its coverage files + coverageDirectory: 'reports/coverage', + + // An array of regexp pattern strings used to skip coverage collection + coveragePathIgnorePatterns: ['/node_modules/', '__tests__', 'warehouse/v0'], + + // A list of reporter names that Jest uses when writing coverage reports + coverageReporters: ['json', 'text', 'lcov', 'clover'], + + // An object that configures minimum threshold enforcement for coverage results + coverageThreshold: { + global: { + branches: 60, + functions: 80, + lines: 80, + statements: 80, + }, + }, + + // A path to a custom dependency extractor + // dependencyExtractor: null, + + // Make calling deprecated APIs throw helpful error messages + errorOnDeprecated: true, + + // Force coverage collection from ignored files using an array of glob patterns + // forceCoverageMatch: [], + + // A path to a module which exports an async function that is triggered once before all test suites + // globalSetup: null, + + // A path to a module which exports an async function that is triggered once after all test suites + // globalTeardown: null, + + // A set of global variables that need to be available in all test environments + // globals: { + // 'ts-jest': { + // tsConfigFile: 'tsconfig.json', + // diagnostics: false + // }, + // }, + // preset: 'ts-jest/presets/js-with-ts-esm', + + // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers. + // maxWorkers: "50%", + + // An array of directory names to be searched recursively up from the requiring module's location + moduleDirectories: ['node_modules'], + + // An array of file extensions your modules use + moduleFileExtensions: ['js', 'json', 'ts', 'node'], + + // A map from regular expressions to module names that allow to stub out resources with a single module + // moduleNameMapper: {}, + + // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader + modulePathIgnorePatterns: ['/test/__mocks__/axios.js'], + + // Activates notifications for test results + notify: true, + + // An enum that specifies notification mode. Requires { notify: true } + notifyMode: 'failure-change', + + // A preset that is used as a base for Jest's configuration + // preset: null, + + // Run tests from one or more projects + // projects: null, + + // Use this configuration option to add custom reporters to Jest + reporters: [ + 'default', + [ + 'jest-sonar', + { + outputDirectory: 'reports/sonar', + outputName: 'results-report.xml', + reportedFilePath: 'relative', + relativeRootDir: './', + }, + ], + ], + + // Automatically reset mock state between every test + // resetMocks: false, + + // Reset the module registry before running each individual test + // resetModules: false, + + // A path to a custom resolver + // resolver: null, + + // Automatically restore mock state between every test + // restoreMocks: false, + + // The root directory that Jest should scan for tests and modules within + // rootDir: null, + + // A list of paths to directories that Jest should use to search for files in + // roots: [ + // "" + // ], + + // Allows you to use a custom runner instead of Jest's default test runner + // runner: "jest-runner", + + // The paths to modules that run some code to configure or set up the testing environment before each test + // setupFiles: [], + + // A list of paths to modules that run some code to configure or set up the testing framework before each test + // setupFilesAfterEnv: [], + + // A list of paths to snapshot serializer modules Jest should use for snapshot testing + // snapshotSerializers: [], + + // The test environment that will be used for testing + testEnvironment: 'node', + + // Options that will be passed to the testEnvironment + // testEnvironmentOptions: {}, + + // Adds a location field to test results + // testLocationInResults: false, + + // The glob patterns Jest uses to detect test files + testMatch: ['**/*.test.[tj]s?(x)'], + + // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped + testPathIgnorePatterns: ['/node_modules/'], + + // The regexp pattern or array of patterns that Jest uses to detect test files + // testRegex: [], + // This option allows the use of a custom results processor + // testResultsProcessor: null, + + // This option allows use of a custom test runner + // testRunner: "jasmine2", + + // This option sets the URL for the jsdom environment. It is reflected in properties such as location.href + // testURL: "http://localhost", + + // Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout" + // timers: "real", + + // A map from regular expressions to paths to transformers + transform: { + '^.+\\.[tj]sx?$': [ + 'ts-jest', + { + tsconfig: 'tsconfig.json', + diagnostics: true, + }, + ], + }, + // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation + // transformIgnorePatterns: [ + // "/node_modules/" + // ], + + // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them + // unmockedModulePathPatterns: undefined, + + // Indicates whether each individual test should be reported during the run + // verbose: null, + + // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode + // watchPathIgnorePatterns: [], + + // Whether to use watchman for file crawling + // watchman: true, +}; diff --git a/package-lock.json b/package-lock.json index c2c1ecf755..9763f74709 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rudder-transformer", - "version": "1.45.0", + "version": "1.46.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rudder-transformer", - "version": "1.45.0", + "version": "1.46.4", "license": "ISC", "dependencies": { "@amplitude/ua-parser-js": "^0.7.24", diff --git a/package.json b/package.json index d16ef9ea9f..be757de347 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rudder-transformer", - "version": "1.45.0", + "version": "1.46.4", "description": "", "homepage": "https://github.com/rudderlabs/rudder-transformer#readme", "bugs": { @@ -32,6 +32,8 @@ "verify": "eslint . || exit 1; npm run test:js || exit 1", "test:testRouter": "jest testRouter --detectOpenHandles --coverage --notify --watchAll=false", "test:benchmark": "node benchmark/index.js", + "test": "jest -c jest.config.js --detectOpenHandles", + "test:ci": "npm run test -- --coverage --expand --maxWorkers=50%", "test:js": "jest -c jest.default.config.js --detectOpenHandles", "test:js:silent": "npm run test:js -- --silent", "test:js:ci": "npm run test:js -- --coverage --expand --maxWorkers=50%", @@ -46,7 +48,7 @@ "commit-msg": "commitlint --edit", "prepare": "node ./scripts/skipPrepareScript.js || husky install", "release": "npx standard-version", - "release:github": "DEBUG=conventional-github-releaser npx conventional-github-releaser -p angular --config github-release.config.js", + "release:github": "DEBUG=conventional-github-releaser npx conventional-github-releaser -p angular -v", "clean:node": "modclean", "check:lint": "eslint . -f json -o reports/eslint.json || exit 0" }, diff --git a/src/cdk/v2/destinations/eloqua/config.js b/src/cdk/v2/destinations/eloqua/config.js index 091dfa7f7f..ac7b1edf3f 100644 --- a/src/cdk/v2/destinations/eloqua/config.js +++ b/src/cdk/v2/destinations/eloqua/config.js @@ -1,5 +1,5 @@ const ELOQUA = 'eloqua'; module.exports = { - ELOQUA -}; \ No newline at end of file + ELOQUA, +}; diff --git a/src/constants/destinationCanonicalNames.js b/src/constants/destinationCanonicalNames.js index 6c7ec83ed9..870c534db0 100644 --- a/src/constants/destinationCanonicalNames.js +++ b/src/constants/destinationCanonicalNames.js @@ -3,6 +3,14 @@ const DestHandlerMap = { }; const DestCanonicalNames = { + facebook_conversions: [ + 'fb_conversions', + 'fb conversions', + 'FacebookConversions', + 'Facebook Conversions', + 'FB Conversions', + 'Facebook_Conversions', + ], fb_pixel: [ 'fb_pixel', 'fb pixel', diff --git a/src/routes/bulkUpload.ts b/src/routes/bulkUpload.ts index e7aaf897c8..efbd81c34e 100644 --- a/src/routes/bulkUpload.ts +++ b/src/routes/bulkUpload.ts @@ -14,4 +14,4 @@ router.post('/getFailedJobs', getFailedJobStatus); router.post('/getWarningJobs', getWarnJobStatus); const bulkUploadRoutes = router.routes(); -export default bulkUploadRoutes; \ No newline at end of file +export default bulkUploadRoutes; diff --git a/src/routes/testEvents.ts b/src/routes/testEvents.ts index f842887b91..556ec10198 100644 --- a/src/routes/testEvents.ts +++ b/src/routes/testEvents.ts @@ -7,4 +7,4 @@ router.post('/:version/:destination', EventTestController.testEvent); router.get('/:version/health', EventTestController.status); const testEventRoutes = router.routes(); -export default testEventRoutes; \ No newline at end of file +export default testEventRoutes; diff --git a/src/services/userTransform.ts b/src/services/userTransform.ts index d54c105b02..18165615a8 100644 --- a/src/services/userTransform.ts +++ b/src/services/userTransform.ts @@ -7,6 +7,7 @@ import { ProcessorTransformationResponse, UserTransformationResponse, UserTransformationServiceResponse, + MessageIdMetadataMap, } from '../types/index'; import { RespStatusError, @@ -49,8 +50,15 @@ export default class UserTransformService { const eventsToProcess = destEvents as ProcessorTransformationRequest[]; const transformationVersionId = eventsToProcess[0]?.destination?.Transformations[0]?.VersionID; - const messageIds = eventsToProcess.map((ev) => ev.metadata?.messageId); - const messageIdsSet = new Set(messageIds); + const messageIds: string[] = []; + const messageIdsSet = new Set(); + const messageIdMetadataMap: MessageIdMetadataMap = {}; + eventsToProcess.forEach((ev) => { + messageIds.push(ev.metadata?.messageId); + messageIdsSet.add(ev.metadata?.messageId); + messageIdMetadataMap[ev.metadata?.messageId] = ev.metadata; + }); + const messageIdsInOutputSet = new Set(); const commonMetadata = { @@ -88,6 +96,12 @@ export default class UserTransformService { const transformedEventsWithMetadata: ProcessorTransformationResponse[] = []; destTransformedEvents.forEach((ev) => { + // add messageId to output set + if (ev.metadata?.messageId) { + messageIdsInOutputSet.add(ev.metadata.messageId); + } else if (ev.metadata?.messageIds) { + ev.metadata.messageIds.forEach((id) => messageIdsInOutputSet.add(id)); + } if (ev.error) { transformedEventsWithMetadata.push({ statusCode: 400, @@ -106,12 +120,6 @@ export default class UserTransformService { } as ProcessorTransformationResponse); return; } - // add messageId to output set - if (ev.metadata?.messageId) { - messageIdsInOutputSet.add(ev.metadata.messageId); - } else if (ev.metadata?.messageIds) { - ev.metadata.messageIds.forEach((id) => messageIdsInOutputSet.add(id)); - } transformedEventsWithMetadata.push({ output: ev.transformedEvent, metadata: isEmpty(ev.metadata) ? commonMetadata : ev.metadata, @@ -125,7 +133,7 @@ export default class UserTransformService { const droppedEvents = messageIdsNotInOutput.map((id) => ({ statusCode: HTTP_CUSTOM_STATUS_CODES.FILTERED, metadata: { - ...commonMetadata, + ...(isEmpty(messageIdMetadataMap[id]) ? commonMetadata : messageIdMetadataMap[id]), messageId: id, messageIds: null, }, diff --git a/src/types/index.ts b/src/types/index.ts index ff0c1f88b9..5a35b697d6 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -52,6 +52,10 @@ type Metadata = { transformationId: string; }; +type MessageIdMetadataMap = { + [key: string]: Metadata; +}; + type UserTransformationInput = { VersionID: string; ID: string; @@ -223,6 +227,7 @@ type ComparatorInput = { export { Metadata, + MessageIdMetadataMap, UserTransformationLibrary, ProcessorTransformationRequest, ProcessorTransformationResponse, diff --git a/src/util/prometheus.js b/src/util/prometheus.js index 8018750b5d..9f3255a05d 100644 --- a/src/util/prometheus.js +++ b/src/util/prometheus.js @@ -229,7 +229,13 @@ class Prometheus { name: 'tp_errors', help: 'tp_errors', type: 'counter', - labelNames: ['sourceType', 'destinationType', 'k8_namespace', 'workspaceId', 'trackingPlanId'], + labelNames: [ + 'sourceType', + 'destinationType', + 'k8_namespace', + 'workspaceId', + 'trackingPlanId', + ], }, { name: 'tp_events_count', @@ -593,7 +599,13 @@ class Prometheus { name: 'tp_request_latency', help: 'tp_request_latency', type: 'histogram', - labelNames: ['sourceType', 'destinationType', 'k8_namespace', 'workspaceId', 'trackingPlanId'], + labelNames: [ + 'sourceType', + 'destinationType', + 'k8_namespace', + 'workspaceId', + 'trackingPlanId', + ], }, { name: 'cdk_events_latency', @@ -928,7 +940,6 @@ class Prometheus { type: 'histogram', labelNames: [], }, - ]; metrics.forEach((metric) => { diff --git a/src/util/redis/testData/shopify_source.json b/src/util/redis/testData/shopify_source.json index 5b33085c6a..53c6047298 100644 --- a/src/util/redis/testData/shopify_source.json +++ b/src/util/redis/testData/shopify_source.json @@ -5,9 +5,7 @@ "user_id": "rudder01", "id": "shopify_test_get_items_fail", "query_parameters": { - "topic": [ - "carts_update" - ] + "topic": ["carts_update"] }, "token": "shopify_test_get_items_fail", "email": "test@rudderstack.com", @@ -56,9 +54,7 @@ "sessionId": "session_id", "cartToken": "shopify_test_set_map_fail", "query_parameters": { - "writeKey": [ - "Shopify Write Key" - ] + "writeKey": ["Shopify Write Key"] }, "cart": { "token": "shopify_test_set_map_fail", @@ -80,9 +76,7 @@ "input": { "cart_token": "shopifyGetSessionId", "query_parameters": { - "topic": [ - "checkouts_delete" - ] + "topic": ["checkouts_delete"] }, "line_items": [], "note": null, @@ -121,9 +115,7 @@ "input": { "cart_token": "shopifyGetAnonymousId", "query_parameters": { - "topic": [ - "checkouts_delete" - ] + "topic": ["checkouts_delete"] }, "line_items": [], "note": null, @@ -162,9 +154,7 @@ "input": { "id": "shopify_test3", "query_parameters": { - "topic": [ - "carts_update" - ] + "topic": ["carts_update"] }, "token": "shopify_test3", "line_items": [], @@ -185,9 +175,7 @@ "input": { "id": "shopify_test3", "query_parameters": { - "topic": [ - "orders_delete" - ] + "topic": ["orders_delete"] }, "line_items": [], "note": null, @@ -225,9 +213,7 @@ "input": { "id": "shopify_test3", "query_parameters": { - "topic": [ - "checkouts_delete" - ] + "topic": ["checkouts_delete"] }, "line_items": [], "note": null, @@ -266,9 +252,7 @@ "user_id": "rudder01", "id": "shopify_test_cart", "query_parameters": { - "topic": [ - "carts_update" - ] + "topic": ["carts_update"] }, "token": "shopify_test_cart", "email": "test@rudderstack.com", @@ -464,9 +448,7 @@ ], "id": "shopify_test2", "query_parameters": { - "topic": [ - "orders_updated" - ] + "topic": ["orders_updated"] }, "shipping_address": "abc", "billing_address": "abc", @@ -540,9 +522,7 @@ "description": "Track Call -> fullfillments_create", "input": { "query_parameters": { - "topic": [ - "fulfillments_create" - ] + "topic": ["fulfillments_create"] }, "order_id": "random", "status": "success", @@ -699,9 +679,7 @@ "id": "shopify_test2", "user_id": "rudder01", "query_parameters": { - "topic": [ - "checkouts_update" - ] + "topic": ["checkouts_update"] }, "token": "shopify_test2", "cart_token": "shopify_test2", @@ -902,9 +880,7 @@ ], "id": "shopify_test2", "query_parameters": { - "topic": [ - "checkouts_update" - ] + "topic": ["checkouts_update"] }, "cart_token": null, "line_items": [ @@ -1097,9 +1073,7 @@ "input": { "id": "shopify_test2", "query_parameters": { - "topic": [ - "checkouts_update" - ] + "topic": ["checkouts_update"] }, "cart_token": null, "line_items": [ @@ -1282,9 +1256,7 @@ "input": { "id": "shopify_test4", "query_parameters": { - "topic": [ - "carts_update" - ] + "topic": ["carts_update"] }, "token": "shopify_test4", "line_items": [], @@ -1326,9 +1298,7 @@ "anonymousId": "b9993cc5-9e60-4e69-be0e-4e38c228314b", "cartToken": "shopify_test1", "query_parameters": { - "writeKey": [ - "Shopify Write Key" - ] + "writeKey": ["Shopify Write Key"] }, "cart": { "token": "token", @@ -1352,9 +1322,7 @@ "sessionId": "b9993cc5-9e60-4e69-be0e-4e38c228314b", "cartToken": "shopify_test1", "query_parameters": { - "writeKey": [ - "Shopify Write Key" - ] + "writeKey": ["Shopify Write Key"] }, "cart": { "token": "token", @@ -1376,9 +1344,7 @@ "input": { "id": "order_id", "query_parameters": { - "topic": [ - "checkouts_update" - ] + "topic": ["checkouts_update"] }, "token": "shopify_test2", "cart_token": "shopify_test_no_sessionId", @@ -1561,4 +1527,4 @@ "timestamp": "2023-02-10T12:16:07.251Z" } } -] \ No newline at end of file +] diff --git a/src/v0/destinations/active_campaign/transform.js b/src/v0/destinations/active_campaign/transform.js index 905a8e897f..9c6643ebc3 100644 --- a/src/v0/destinations/active_campaign/transform.js +++ b/src/v0/destinations/active_campaign/transform.js @@ -130,7 +130,9 @@ const customTagProcessor = async (message, category, destination, contactId) => if (parseInt(get(res, TOTAL_RECORDS_KEY), 10) > 100) { const limit = Math.floor(parseInt(get(res, TOTAL_RECORDS_KEY), 10) / 100); for (let i = 0; i < limit; i += 1) { - endpoint = `${destination.Config.apiUrl}${category.tagEndPoint}?limit=100&offset=${100 * (i + 1)}`; + endpoint = `${destination.Config.apiUrl}${category.tagEndPoint}?limit=100&offset=${ + 100 * (i + 1) + }`; requestOptions = { headers: getHeader(destination), }; @@ -249,7 +251,9 @@ const customFieldProcessor = async (message, category, destination) => { const limit = Math.floor(parseInt(get(res, TOTAL_RECORDS_KEY), 10) / 100); if (parseInt(get(res, TOTAL_RECORDS_KEY), 10) > 100) { for (let i = 0; i < limit; i += 1) { - endpoint = `${destination.Config.apiUrl}${category.fieldEndPoint}?limit=100&offset=${100 * (i + 1)}`; + endpoint = `${destination.Config.apiUrl}${category.fieldEndPoint}?limit=100&offset=${ + 100 * (i + 1) + }`; const requestOpt = { headers: { 'Api-Token': destination.Config.apiKey, diff --git a/src/v0/destinations/braze/networkHandler.js b/src/v0/destinations/braze/networkHandler.js index cf6d36c2b4..a141607fe9 100644 --- a/src/v0/destinations/braze/networkHandler.js +++ b/src/v0/destinations/braze/networkHandler.js @@ -27,12 +27,14 @@ const responseHandler = (destinationResponse, _dest) => { } // Partial errors - if (!!response && + if ( + !!response && response.message === 'success' && response.errors && - response.errors.length > 0){ - stats.increment('braze_partial_failure') - } + response.errors.length > 0 + ) { + stats.increment('braze_partial_failure'); + } // application level errors if ( diff --git a/src/v0/destinations/braze/transform.js b/src/v0/destinations/braze/transform.js index 9816d792f1..26fd86b3dd 100644 --- a/src/v0/destinations/braze/transform.js +++ b/src/v0/destinations/braze/transform.js @@ -218,7 +218,7 @@ async function processIdentify(message, destination) { ); if (!isHttpStatusSuccess(brazeIdentifyResp.status)) { throw new NetworkError( - 'Braze identify failed', + `Braze identify failed - ${JSON.stringify(brazeIdentifyResp.response)}`, brazeIdentifyResp.status, { [tags.TAG_NAMES.ERROR_TYPE]: getDynamicErrorType(brazeIdentifyResp.status), diff --git a/src/v0/destinations/clevertap/transform.js b/src/v0/destinations/clevertap/transform.js index e3d9ca1083..5c1e28c086 100644 --- a/src/v0/destinations/clevertap/transform.js +++ b/src/v0/destinations/clevertap/transform.js @@ -419,7 +419,7 @@ const processRouterDest = (inputs, reqMetadata) => { batchedEvents.forEach((batch) => { const batchedRequest = generateClevertapBatchedPayload(batch.events, batch.destination); batchResponseList.push( - getSuccessRespEvents(batchedRequest, batch.metadata, batch.destination, reqMetadata), + getSuccessRespEvents(batchedRequest, batch.metadata, batch.destination), ); }); } diff --git a/src/v0/destinations/customerio/util.test.js b/src/v0/destinations/customerio/util.test.js index 9117ed287c..2c308cd262 100644 --- a/src/v0/destinations/customerio/util.test.js +++ b/src/v0/destinations/customerio/util.test.js @@ -112,17 +112,17 @@ describe('Unit test cases for customerio identifyResponseBuilder', () => { expect(identifyResponseBuilder('user1', getTestMessage())).toEqual(expectedOutput); }); it('No Identifier to send for Identify Call', async () => { - let expectedOutput = "userId or email is not present"; + let expectedOutput = 'userId or email is not present'; try { - identifyResponseBuilder(null, getIdentifyTestMessage()) + identifyResponseBuilder(null, getIdentifyTestMessage()); } catch (error) { expect(error.message).toEqual(expectedOutput); } }); it('No Identifier to send for Identify Call', async () => { - let expectedOutput = "userId or email is not present"; + let expectedOutput = 'userId or email is not present'; try { - identifyResponseBuilder('', getIdentifyTestMessage()) + identifyResponseBuilder('', getIdentifyTestMessage()); } catch (error) { expect(error.message).toEqual(expectedOutput); } @@ -141,26 +141,28 @@ describe('Unit test cases for customerio aliasResponseBuilder', () => { it('Merging happending with previous_id as email and present one as id', async () => { let expectedOutput = { endpoint: 'https://track.customer.io/api/v1/merge_customers', - rawPayload: { primary: { id: 'user1' }, secondary: { email: "abc@test.com" } }, + rawPayload: { primary: { id: 'user1' }, secondary: { email: 'abc@test.com' } }, requestConfig: { requestFormat: 'JSON', requestMethod: 'POST' }, }; - expect(aliasResponseBuilder({ previousId: "abc@test.com" }, "user1")).toEqual(expectedOutput); + expect(aliasResponseBuilder({ previousId: 'abc@test.com' }, 'user1')).toEqual(expectedOutput); }); it('Merging happending with userId as email and present one as id', async () => { let expectedOutput = { endpoint: 'https://track.customer.io/api/v1/merge_customers', - rawPayload: { secondary: { id: 'user1' }, primary: { email: "abc@test.com" } }, + rawPayload: { secondary: { id: 'user1' }, primary: { email: 'abc@test.com' } }, requestConfig: { requestFormat: 'JSON', requestMethod: 'POST' }, }; - expect(aliasResponseBuilder({ previousId: "user1" }, "abc@test.com")).toEqual(expectedOutput); + expect(aliasResponseBuilder({ previousId: 'user1' }, 'abc@test.com')).toEqual(expectedOutput); }); it('Merging happending with userId as email and present one as id', async () => { let expectedOutput = { endpoint: 'https://track.customer.io/api/v1/merge_customers', - rawPayload: { secondary: { email: 'user1@test.com' }, primary: { email: "abc@test.com" } }, + rawPayload: { secondary: { email: 'user1@test.com' }, primary: { email: 'abc@test.com' } }, requestConfig: { requestFormat: 'JSON', requestMethod: 'POST' }, }; - expect(aliasResponseBuilder({ previousId: "user1@test.com" }, "abc@test.com")).toEqual(expectedOutput); + expect(aliasResponseBuilder({ previousId: 'user1@test.com' }, 'abc@test.com')).toEqual( + expectedOutput, + ); }); }); diff --git a/src/v0/destinations/facebook_conversions/config.js b/src/v0/destinations/facebook_conversions/config.js new file mode 100644 index 0000000000..fc04f13be6 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/config.js @@ -0,0 +1,126 @@ +const { getMappingConfig } = require('../../util'); + +const ENDPOINT = (datasetId, accessToken) => + `https://graph.facebook.com/v17.0/${datasetId}/events?access_token=${accessToken}`; + +const CONFIG_CATEGORIES = { + USERDATA: { + standard: false, + type: 'identify', + name: 'FBCUserDataConfig', + }, + COMMON: { name: 'FBCCommonConfig' }, + APPDATA: { name: 'FBCAppEventsConfig' }, + SIMPLE_TRACK: { + standard: false, + type: 'simple track', + name: 'FBCSimpleCustomConfig', + }, + PRODUCT_LIST_VIEWED: { + standard: true, + type: 'product list viewed', + eventName: 'ViewContent', + name: 'FBCProductListViewedCustomData', + }, + PRODUCT_VIEWED: { + standard: true, + type: 'product viewed', + eventName: 'ViewContent', + name: 'FBCProductViewedCustomData', + }, + PRODUCT_ADDED: { + standard: true, + type: 'product added', + eventName: 'AddToCart', + name: 'FBCProductAddedCustomData', + }, + ORDER_COMPLETED: { + standard: true, + type: 'order completed', + eventName: 'Purchase', + name: 'FBCOrderCompletedCustomData', + }, + PRODUCTS_SEARCHED: { + standard: true, + type: 'products searched', + eventName: 'Search', + name: 'FBCProductSearchedCustomData', + }, + CHECKOUT_STARTED: { + standard: true, + type: 'checkout started', + eventName: 'InitiateCheckout', + name: 'FBCCheckoutStartedCustomData', + }, + PAYMENT_INFO_ENTERED: { + standard: true, + type: 'payment info entered', + eventName: 'AddPaymentInfo', + name: 'FBCPaymentInfoEnteredCustomData', + }, + PRODUCT_ADDED_TO_WISHLIST: { + standard: true, + type: 'product added to wishlist', + eventName: 'AddToWishlist', + name: 'FBCProductAddedToWishlistCustomData', + }, + OTHER_STANDARD: { + standard: true, + type: 'otherStandard', + name: 'FBCSimpleCustomConfig', + }, + PAGE_VIEW: { + standard: true, + type: 'page_view', + eventName: 'PageView', + name: 'FBCSimpleCustomConfig', + }, +}; + +const MAPPING_CONFIG = getMappingConfig(CONFIG_CATEGORIES, __dirname); +const ACTION_SOURCES_VALUES = [ + 'email', + 'website', + 'app', + 'phone_call', + 'chat', + 'physical_store', + 'system_generated', + 'other', +]; + +const OTHER_STANDARD_EVENTS = [ + 'Lead', + 'CompleteRegistration', + 'Contact', + 'CustomizeProduct', + 'Donate', + 'FindLocation', + 'Schedule', + 'StartTrial', + 'SubmitApplication', + 'Subscribe', +]; + +const FB_CONVERSIONS_DEFAULT_EXCLUSION = ['opt_out', 'event_id', 'action_source']; +const STANDARD_ECOMM_EVENTS_CATEGORIES = [ + CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED, + CONFIG_CATEGORIES.PRODUCT_VIEWED, + CONFIG_CATEGORIES.PRODUCT_ADDED, + CONFIG_CATEGORIES.ORDER_COMPLETED, + CONFIG_CATEGORIES.PRODUCTS_SEARCHED, + CONFIG_CATEGORIES.CHECKOUT_STARTED, + CONFIG_CATEGORIES.PAYMENT_INFO_ENTERED, + CONFIG_CATEGORIES.PRODUCT_ADDED_TO_WISHLIST, +]; + +module.exports = { + ENDPOINT, + MAPPING_CONFIG, + CONFIG_CATEGORIES, + ACTION_SOURCES_VALUES, + FB_CONVERSIONS_DEFAULT_EXCLUSION, + STANDARD_ECOMM_EVENTS_CATEGORIES, + OTHER_STANDARD_EVENTS, + DESTINATION: 'FACEBOOK_CONVERSIONS', +}; diff --git a/src/v0/destinations/facebook_conversions/data/FBCAppEventsConfig.json b/src/v0/destinations/facebook_conversions/data/FBCAppEventsConfig.json new file mode 100644 index 0000000000..e8e2944ea0 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCAppEventsConfig.json @@ -0,0 +1,101 @@ +[ + { + "destKey": "advertiser_tracking_enabled", + "sourceKeys": "context.device.adTrackingEnabled", + "required": true + }, + { + "destKey": "application_tracking_enabled", + "sourceKeys": "properties.application_tracking_enabled", + "required": true + }, + { + "destKey": "extinfo.0", + "sourceKeys": "context.device.type", + "required": true, + "metadata": { + "type": "toLower" + } + }, + { + "destKey": "extinfo.1", + "sourceKeys": "context.app.namespace" + }, + { + "destKey": "extinfo.2", + "sourceKeys": "context.app.build" + }, + { + "destKey": "extinfo.3", + "sourceKeys": "context.app.version" + }, + { + "destKey": "extinfo.4", + "sourceKeys": "context.os.version", + "required": true + }, + { + "destKey": "extinfo.5", + "sourceKeys": "context.device.model" + }, + { + "destKey": "extinfo.6", + "sourceKeys": "context.locale" + }, + { + "destKey": "extinfo.7", + "sourceKeys": "context.abv_timezone" + }, + { + "destKey": "extinfo.8", + "sourceKeys": "context.network.carrier" + }, + { + "destKey": "extinfo.9", + "sourceKeys": "context.screen.width" + }, + { + "destKey": "extinfo.10", + "sourceKeys": "context.screen.height" + }, + { + "destKey": "extinfo.11", + "sourceKeys": "context.screen.density" + }, + { + "destKey": "extinfo.12", + "sourceKeys": "context.cpu_cores" + }, + { + "destKey": "extinfo.13", + "sourceKeys": "context.ext_storage_size" + }, + { + "destKey": "extinfo.14", + "sourceKeys": "context.avl_storage_size" + }, + { + "destKey": "extinfo.15", + "sourceKeys": "context.timezone" + }, + { + "destKey": "campaign_ids", + "sourceKeys": ["properties.campaignId", "context.traits.campaignId", "context.campaign.name"] + }, + { + "destKey": "install_referrer", + "sourceKeys": "properties.install_referrer" + }, + { + "destKey": "installer_package", + "sourceKeys": "properties.installer_package" + }, + { + "destKey": "url_schemes", + "sourceKeys": "properties.url_schemes" + }, + { + "destKey": "windows_attribution_id", + "sourceKeys": "properties.windows_attribution_id" + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCCheckoutStartedCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCCheckoutStartedCustomData.json new file mode 100644 index 0000000000..6bef31195b --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCCheckoutStartedCustomData.json @@ -0,0 +1,53 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_type", + "sourceKeys": "", + "metadata": { + "defaultValue": "product" + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category" + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + }, + { + "destKey": "num_items", + "sourceKeys": "", + "metadata": { + "defaultValue": 0 + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCCommonConfig.json b/src/v0/destinations/facebook_conversions/data/FBCCommonConfig.json new file mode 100644 index 0000000000..11a81a20ab --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCCommonConfig.json @@ -0,0 +1,37 @@ +[ + { + "destKey": "event_name", + "sourceKeys": ["event", "type"], + "required": true + }, + { + "destKey": "event_time", + "sourceKeys": "timestamp", + "sourceFromGenericMap": true, + "required": true, + "metadata": { + "type": "secondTimestamp" + } + }, + { + "destKey": "event_source_url", + "sourceKeys": "pageUrl", + "sourceFromGenericMap": true + }, + { + "destKey": "opt_out", + "sourceKeys": ["traits.opt_out", "context.traits.opt_out", "properties.opt_out"] + }, + { + "destKey": "event_id", + "sourceKeys": ["traits.event_id", "context.traits.event_id", "properties.event_id", "messageId"] + }, + { + "destKey": "action_source", + "sourceKeys": [ + "traits.action_source", + "context.traits.action_source", + "properties.action_source" + ] + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCOrderCompletedCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCOrderCompletedCustomData.json new file mode 100644 index 0000000000..799ddfcd85 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCOrderCompletedCustomData.json @@ -0,0 +1,57 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_type", + "sourceKeys": "", + "metadata": { + "defaultValue": "product" + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category" + }, + { + "destKey": "content_name", + "sourceKeys": ["properties.content_name", "properties.contentName"] + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + }, + { + "destKey": "num_items", + "sourceKeys": "", + "metadata": { + "defaultValue": 0 + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCPaymentInfoEnteredCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCPaymentInfoEnteredCustomData.json new file mode 100644 index 0000000000..5f346732a1 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCPaymentInfoEnteredCustomData.json @@ -0,0 +1,42 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category", + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCProductAddedCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCProductAddedCustomData.json new file mode 100644 index 0000000000..28e981d9e5 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCProductAddedCustomData.json @@ -0,0 +1,56 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_type", + "sourceKeys": "", + "metadata": { + "defaultValue": "product" + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category", + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "content_name", + "sourceKeys": ["properties.name", "properties.product_name"], + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCProductAddedToWishlistCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCProductAddedToWishlistCustomData.json new file mode 100644 index 0000000000..796d7ab3d4 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCProductAddedToWishlistCustomData.json @@ -0,0 +1,49 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category", + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "content_name", + "sourceKeys": ["properties.name", "properties.product_name"], + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCProductListViewedCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCProductListViewedCustomData.json new file mode 100644 index 0000000000..4a4e29d34e --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCProductListViewedCustomData.json @@ -0,0 +1,53 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_type", + "sourceKeys": "", + "metadata": { + "defaultValue": "product" + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category", + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "content_name", + "sourceKeys": ["properties.content_name", "properties.contentName"] + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCProductSearchedCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCProductSearchedCustomData.json new file mode 100644 index 0000000000..08b2e755ec --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCProductSearchedCustomData.json @@ -0,0 +1,53 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_type", + "sourceKeys": "", + "metadata": { + "defaultValue": "product" + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category", + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + }, + { + "destKey": "search_string", + "sourceKeys": "properties.query" + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCProductViewedCustomData.json b/src/v0/destinations/facebook_conversions/data/FBCProductViewedCustomData.json new file mode 100644 index 0000000000..28e981d9e5 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCProductViewedCustomData.json @@ -0,0 +1,56 @@ +[ + { + "destKey": "content_ids", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "contents", + "sourceKeys": "", + "metadata": { + "defaultValue": [] + } + }, + { + "destKey": "content_type", + "sourceKeys": "", + "metadata": { + "defaultValue": "product" + } + }, + { + "destKey": "content_category", + "sourceKeys": "properties.category", + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "content_name", + "sourceKeys": ["properties.name", "properties.product_name"], + "metadata": { + "defaultValue": "" + } + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + }, + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCSimpleCustomConfig.json b/src/v0/destinations/facebook_conversions/data/FBCSimpleCustomConfig.json new file mode 100644 index 0000000000..e506b33334 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCSimpleCustomConfig.json @@ -0,0 +1,21 @@ +[ + { + "destKey": "value", + "sourceKeys": [ + "properties.revenue", + "properties.value", + "properties.price", + "properties.total" + ], + "metadata": { + "type": "numberForRevenue" + } + }, + { + "destKey": "currency", + "sourceKeys": "properties.currency", + "metadata": { + "defaultValue": "USD" + } + } +] diff --git a/src/v0/destinations/facebook_conversions/data/FBCUserDataConfig.json b/src/v0/destinations/facebook_conversions/data/FBCUserDataConfig.json new file mode 100644 index 0000000000..2d72260ac6 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/data/FBCUserDataConfig.json @@ -0,0 +1,169 @@ +[ + { + "destKey": "external_id", + "sourceKeys": [ + "userId", + "traits.userId", + "traits.id", + "context.traits.userId", + "context.traits.id", + "anonymousId" + ], + "required": true, + "metadata": { + "type": "hashToSha256" + } + }, + { + "destKey": "em", + "sourceKeys": ["traits.email", "context.traits.email"], + "required": false, + "metadata": { + "type": ["trim", "toLower", "hashToSha256"] + } + }, + { + "destKey": "ph", + "sourceKeys": ["traits.phone", "context.traits.phone"], + "required": false, + "metadata": { + "type": "hashToSha256" + } + }, + { + "destKey": "ge", + "sourceKeys": ["traits.gender", "context.traits.gender"], + "required": false, + "metadata": { + "type": "getFbGenderVal" + } + }, + { + "destKey": "db", + "sourceKeys": ["traits.birthday", "context.traits.birthday"], + "required": false, + "metadata": { + "type": "hashToSha256" + } + }, + { + "destKey": "ln", + "sourceKeys": [ + "traits.lastname", + "traits.lastName", + "traits.last_name", + "context.traits.lastname", + "context.traits.lastName", + "context.traits.last_name" + ], + "required": false, + "metadata": { + "type": ["trim", "toLower", "hashToSha256"] + } + }, + { + "destKey": "fn", + "sourceKeys": [ + "traits.firstname", + "traits.firstName", + "traits.first_name", + "context.traits.firstname", + "context.traits.firstName", + "context.traits.first_name" + ], + "required": false, + "metadata": { + "type": ["trim", "toLower", "hashToSha256"] + } + }, + { + "destKey": "name", + "sourceKeys": ["traits.name", "context.traits.name"], + "required": false, + "metadata": { + "type": "toString" + } + }, + { + "destKey": "ct", + "sourceKeys": ["traits.address.city", "context.traits.address.city"], + "required": false, + "metadata": { + "type": ["toLower", "hashToSha256"] + } + }, + { + "destKey": "st", + "sourceKeys": ["traits.address.state", "context.traits.address.state"], + "required": false, + "metadata": { + "type": ["toLower", "hashToSha256"] + } + }, + { + "destKey": "zp", + "sourceKeys": [ + "traits.address.zip", + "context.traits.address.zip", + "traits.address.postalCode", + "context.traits.address.postalCode" + ], + "required": false, + "metadata": { + "type": ["toLower", "hashToSha256"] + } + }, + { + "destKey": "country", + "sourceKeys": ["traits.address.country", "context.traits.address.country"], + "required": false, + "metadata": { + "type": ["toLower", "hashToSha256"] + } + }, + { + "destKey": "client_ip_address", + "sourceKeys": ["context.ip", "request_ip"], + "required": false + }, + { + "destKey": "client_user_agent", + "sourceKeys": "context.userAgent", + "required": false + }, + { + "destKey": "fbc", + "sourceKeys": "context.fbc", + "required": false + }, + { + "destKey": "fbp", + "sourceKeys": "context.fbp", + "required": false + }, + { + "destKey": "subscription_id", + "sourceKeys": "context.subscription_id", + "required": false + }, + { + "destKey": "lead_id", + "sourceKeys": "context.lead_id", + "required": false + }, + { + "destKey": "fb_login_id", + "sourceKeys": "context.fb_login_id", + "required": false + }, + { + "destKey": "madid", + "sourceKeys": "context.device.advertisingId", + "required": false + }, + { + "destKey": "anon_id", + "sourceKeys": ["properties.anon_id", "context.device.advertisingId"], + "required": false + } +] diff --git a/src/v0/destinations/facebook_conversions/networkHandler.js b/src/v0/destinations/facebook_conversions/networkHandler.js new file mode 100644 index 0000000000..0ea7aff7da --- /dev/null +++ b/src/v0/destinations/facebook_conversions/networkHandler.js @@ -0,0 +1,6 @@ +const { networkHandler, errorResponseHandler } = require('../../util/facebookUtils/networkHandler'); + +module.exports = { + networkHandler, + errorResponseHandler, +}; diff --git a/src/v0/destinations/facebook_conversions/transform.js b/src/v0/destinations/facebook_conversions/transform.js new file mode 100644 index 0000000000..dec1ef2e6c --- /dev/null +++ b/src/v0/destinations/facebook_conversions/transform.js @@ -0,0 +1,191 @@ +/* eslint-disable no-param-reassign */ +const get = require('get-value'); +const moment = require('moment'); +const { + CONFIG_CATEGORIES, + MAPPING_CONFIG, + FB_CONVERSIONS_DEFAULT_EXCLUSION, + DESTINATION, + ENDPOINT, +} = require('./config'); +const { EventType } = require('../../../constants'); + +const { + constructPayload, + extractCustomFields, + flattenJson, + getIntegrationsObj, + getValidDynamicFormConfig, + simpleProcessRouterDest, + getHashFromArray, + getFieldValueFromMessage, +} = require('../../util'); + +const { + populateCustomDataBasedOnCategory, + getCategoryFromEvent, + getActionSource, + fetchAppData, +} = require('./utils'); + +const { + transformedPayloadData, + fetchUserData, + formingFinalResponse, +} = require('../../util/facebookUtils'); + +const { InstrumentationError, ConfigurationError } = require('../../util/errorTypes'); + +const responseBuilderSimple = (message, category, destination) => { + const { Config, ID } = destination; + let { categoryToContent } = Config; + if (Array.isArray(categoryToContent)) { + categoryToContent = getValidDynamicFormConfig(categoryToContent, 'from', 'to', DESTINATION, ID); + } + + const { + blacklistPiiProperties, + whitelistPiiProperties, + limitedDataUSage, + testDestination, + testEventCode, + datasetId, + accessToken, + actionSource, + } = Config; + const integrationsObj = getIntegrationsObj(message, DESTINATION.toLowerCase()); + + const userData = fetchUserData( + message, + Config, + MAPPING_CONFIG[CONFIG_CATEGORIES.USERDATA.name], + DESTINATION.toLowerCase(), + ); + + if (category.standard) { + message.event = category.eventName; + } + + const commonData = constructPayload( + message, + MAPPING_CONFIG[CONFIG_CATEGORIES.COMMON.name], + DESTINATION.toLowerCase(), + ); + commonData.action_source = getActionSource(commonData, actionSource); + + let customData = {}; + customData = flattenJson( + extractCustomFields(message, customData, ['properties'], FB_CONVERSIONS_DEFAULT_EXCLUSION), + ); + + customData = transformedPayloadData( + message, + customData, + blacklistPiiProperties, + whitelistPiiProperties, + integrationsObj, + ); + customData = populateCustomDataBasedOnCategory(customData, message, category, categoryToContent); + + if (limitedDataUSage) { + const dataProcessingOptions = get(message, 'context.dataProcessingOptions'); + if (dataProcessingOptions && Array.isArray(dataProcessingOptions)) { + [ + commonData.data_processing_options, + commonData.data_processing_options_country, + commonData.data_processing_options_state, + ] = dataProcessingOptions; + } + } + + let appData = {}; + if (commonData.action_source === 'app') { + appData = fetchAppData(message); + } + + return formingFinalResponse( + userData, + commonData, + customData, + ENDPOINT(datasetId, accessToken), + testDestination, + testEventCode, + appData, + ); +}; + +const processEvent = (message, destination) => { + if (!message.type) { + throw new InstrumentationError("'type' is missing"); + } + + const timeStamp = getFieldValueFromMessage(message, 'timestamp'); + if (timeStamp) { + const start = moment.unix(moment(timeStamp).format('X')); + const current = moment.unix(moment().format('X')); + // calculates past event in days + const deltaDay = Math.ceil(moment.duration(current.diff(start)).asDays()); + // calculates future event in minutes + const deltaMin = Math.ceil(moment.duration(start.diff(current)).asMinutes()); + if (deltaDay > 7 || deltaMin > 1) { + throw new InstrumentationError( + 'Events must be sent within seven days of their occurrence or up to one minute in the future.', + ); + } + } + + const { datasetId, accessToken } = destination.Config; + if (!datasetId) { + throw new ConfigurationError('Dataset Id not found. Aborting'); + } + if (!accessToken) { + throw new ConfigurationError('Access token not found. Aborting'); + } + + let eventsToEvents; + if (Array.isArray(destination.Config.eventsToEvents)) { + eventsToEvents = getValidDynamicFormConfig( + destination.Config.eventsToEvents, + 'from', + 'to', + DESTINATION, + destination.ID, + ); + } + + const messageType = message.type.toLowerCase(); + let category; + let mappedEvent; + switch (messageType) { + case EventType.PAGE: + case EventType.SCREEN: + category = CONFIG_CATEGORIES.PAGE_VIEW; + break; + case EventType.TRACK: + if (!message.event || typeof message.event !== 'string') { + throw new InstrumentationError("'event' is required and should be a string"); + } + if (eventsToEvents) { + const eventMappingHash = getHashFromArray(eventsToEvents); + mappedEvent = eventMappingHash[message.event.toLowerCase()]; + } + category = getCategoryFromEvent(mappedEvent || message.event.toLowerCase()); + break; + default: + throw new InstrumentationError(`Message type ${messageType} not supported`); + } + // build the response + return responseBuilderSimple(message, category, destination); +}; + +const process = (event) => processEvent(event.message, event.destination); + +const processRouterDest = async (inputs, reqMetadata) => { + const respList = await simpleProcessRouterDest(inputs, process, reqMetadata); + return respList; +}; + +module.exports = { + process, + processRouterDest, +}; diff --git a/src/v0/destinations/facebook_conversions/utils.js b/src/v0/destinations/facebook_conversions/utils.js new file mode 100644 index 0000000000..270fac8c45 --- /dev/null +++ b/src/v0/destinations/facebook_conversions/utils.js @@ -0,0 +1,210 @@ +const { + CONFIG_CATEGORIES, + OTHER_STANDARD_EVENTS, + STANDARD_ECOMM_EVENTS_CATEGORIES, + MAPPING_CONFIG, + ACTION_SOURCES_VALUES, + DESTINATION, +} = require('./config'); +const { constructPayload, isObject, isAppleFamily } = require('../../util'); +const { getContentType, getContentCategory } = require('../../util/facebookUtils'); +const { InstrumentationError } = require('../../util/errorTypes'); + +const getActionSource = (payload, fallbackActionSource) => { + let actionSource = fallbackActionSource; + if (payload.action_source) { + const isActionSourceValid = ACTION_SOURCES_VALUES.includes(payload.action_source); + if (!isActionSourceValid) { + throw new InstrumentationError('Invalid Action Source type'); + } + actionSource = payload.action_source; + } + + return actionSource; +}; + +const getCategoryFromEvent = (eventName) => { + let category = STANDARD_ECOMM_EVENTS_CATEGORIES.find( + (configCategory) => eventName === configCategory.type || eventName === configCategory.eventName, + ); + + if (!category && OTHER_STANDARD_EVENTS.includes(eventName)) { + category = CONFIG_CATEGORIES.OTHER_STANDARD; + category.eventName = eventName; + } + + if (!category && eventName === CONFIG_CATEGORIES.PAGE_VIEW.eventName) { + category = CONFIG_CATEGORIES.PAGE_VIEW; + } + + if (!category) { + category = CONFIG_CATEGORIES.SIMPLE_TRACK; + } + + return category; +}; + +const populateContentsAndContentIDs = (productPropertiesArray, fallbackQuantity) => { + const contentIds = []; + const contents = []; + if (Array.isArray(productPropertiesArray)) { + productPropertiesArray.forEach((productProps) => { + if (isObject(productProps)) { + const productId = productProps.product_id || productProps.sku || productProps.id; + if (productId) { + contentIds.push(productId); + contents.push({ + id: productId, + quantity: productProps.quantity || fallbackQuantity || 1, + item_price: productProps.price, + }); + } + } + }); + } + + return { contentIds, contents }; +}; + +const validateProductSearchedData = (eventTypeCustomData) => { + const query = eventTypeCustomData.search_string; + const validQueryType = ['string', 'number', 'boolean']; + if (query && !validQueryType.includes(typeof query)) { + throw new InstrumentationError("'query' should be in string format only"); + } +}; + +const populateCustomDataBasedOnCategory = (customData, message, category, categoryToContent) => { + let eventTypeCustomData = {}; + if (category.name) { + eventTypeCustomData = constructPayload(message, MAPPING_CONFIG[category.name]); + } + + switch (category.type) { + case 'product list viewed': { + const { contentIds, contents } = populateContentsAndContentIDs( + message.properties?.products, + message.properties?.quantity, + ); + + const contentCategory = eventTypeCustomData.content_category; + let contentType; + if (contentIds.length > 0) { + contentType = 'product'; + } else if (contentCategory) { + contentIds.push(contentCategory); + contents.push({ + id: contentCategory, + quantity: 1, + }); + contentType = 'product_group'; + } + + eventTypeCustomData = { + ...eventTypeCustomData, + content_ids: contentIds, + contents, + content_type: getContentType( + message, + contentType, + categoryToContent, + DESTINATION.toLowerCase(), + ), + content_category: getContentCategory(contentCategory), + }; + break; + } + case 'product added': + case 'product viewed': + case 'products searched': + case 'payment info entered': + case 'product added to wishlist': { + const contentCategory = eventTypeCustomData.content_category; + const contentType = eventTypeCustomData.content_type; + const { contentIds, contents } = populateContentsAndContentIDs([message.properties]); + eventTypeCustomData = { + ...eventTypeCustomData, + content_ids: contentIds, + contents, + content_type: getContentType( + message, + contentType, + categoryToContent, + DESTINATION.toLowerCase(), + ), + content_category: getContentCategory(contentCategory), + }; + validateProductSearchedData(eventTypeCustomData); + break; + } + case 'order completed': + case 'checkout started': { + const { contentIds, contents } = populateContentsAndContentIDs( + message.properties?.products, + message.properties?.quantity, + ); + + const contentCategory = eventTypeCustomData.content_category; + const contentType = eventTypeCustomData.content_type; + + eventTypeCustomData = { + ...eventTypeCustomData, + content_ids: contentIds, + contents, + content_type: getContentType( + message, + contentType, + categoryToContent, + DESTINATION.toLowerCase(), + ), + content_category: getContentCategory(contentCategory), + num_items: contentIds.length, + }; + break; + } + case 'page_view': + case 'otherStandard': + case 'simple track': + default: + eventTypeCustomData = { ...eventTypeCustomData }; + break; + } + + return { ...customData, ...eventTypeCustomData }; +}; + +const fetchAppData = (message) => { + const appData = constructPayload( + message, + MAPPING_CONFIG[CONFIG_CATEGORIES.APPDATA.name], + DESTINATION.toLowerCase(), + ); + + if (appData) { + let sourceSDK = appData.extinfo[0]; + if (sourceSDK === 'android') { + sourceSDK = 'a2'; + } else if (isAppleFamily(sourceSDK)) { + sourceSDK = 'i2'; + } else { + // if the sourceSDK is not android or ios + throw new InstrumentationError( + 'Extended device information i.e, "context.device.type" is not a valid value. It should be either android or ios/watchos/ipados/tvos', + ); + } + appData.extinfo[0] = sourceSDK; + } + + appData.extinfo = ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''].map( + (val, ind) => (appData.extinfo[ind] ? appData.extinfo[ind] : val), + ); + + return appData; +}; + +module.exports = { + fetchAppData, + getActionSource, + getCategoryFromEvent, + populateCustomDataBasedOnCategory, +}; diff --git a/src/v0/destinations/facebook_pixel/config.js b/src/v0/destinations/facebook_pixel/config.js index 09be8e043d..99c3c70b2d 100644 --- a/src/v0/destinations/facebook_pixel/config.js +++ b/src/v0/destinations/facebook_pixel/config.js @@ -15,31 +15,37 @@ const CONFIG_CATEGORIES = { PRODUCT_LIST_VIEWED: { standard: true, type: 'product list viewed', + eventName: 'ViewContent', name: 'FBPIXELPSimpleCustomConfig', }, PRODUCT_VIEWED: { standard: true, type: 'product viewed', + eventName: 'ViewContent', name: 'FBPIXELPSimpleCustomConfig', }, PRODUCT_ADDED: { standard: true, type: 'product added', + eventName: 'AddToCart', name: 'FBPIXELPSimpleCustomConfig', }, ORDER_COMPLETED: { standard: true, type: 'order completed', + eventName: 'Purchase', name: 'FBPIXELPSimpleCustomConfig', }, PRODUCTS_SEARCHED: { standard: true, type: 'products searched', + eventName: 'Search', name: 'FBPIXELPSimpleCustomConfig', }, CHECKOUT_STARTED: { standard: true, type: 'checkout started', + eventName: 'InitiateCheckout', name: 'FBPIXELPSimpleCustomConfig', }, OTHER_STANDARD: { @@ -50,9 +56,15 @@ const CONFIG_CATEGORIES = { PAGE_VIEW: { standard: true, type: 'page_view', + eventName: 'PageView', + name: 'FBPIXELPSimpleCustomConfig', + }, + PAGE: { + standard: false, + type: 'page', + eventName: 'PageView', name: 'FBPIXELPSimpleCustomConfig', }, - PAGE: { standard: false, type: 'page', name: 'FBPIXELPSimpleCustomConfig' }, }; const MAPPING_CONFIG = getMappingConfig(CONFIG_CATEGORIES, __dirname); @@ -67,6 +79,21 @@ const ACTION_SOURCES_VALUES = [ 'other', ]; +const OTHER_STANDARD_EVENTS = [ + 'AddToWishlist', + 'AddPaymentInfo', + 'Lead', + 'CompleteRegistration', + 'Contact', + 'CustomizeProduct', + 'Donate', + 'FindLocation', + 'Schedule', + 'StartTrial', + 'SubmitApplication', + 'Subscribe', +]; + const FB_PIXEL_DEFAULT_EXCLUSION = ['opt_out', 'event_id', 'action_source']; const STANDARD_ECOMM_EVENTS_TYPE = [ CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED.type, @@ -83,5 +110,6 @@ module.exports = { ACTION_SOURCES_VALUES, FB_PIXEL_DEFAULT_EXCLUSION, STANDARD_ECOMM_EVENTS_TYPE, + OTHER_STANDARD_EVENTS, DESTINATION: 'FACEBOOK_PIXEL', }; diff --git a/src/v0/destinations/facebook_pixel/networkHandler.js b/src/v0/destinations/facebook_pixel/networkHandler.js index f02453e1eb..0ea7aff7da 100644 --- a/src/v0/destinations/facebook_pixel/networkHandler.js +++ b/src/v0/destinations/facebook_pixel/networkHandler.js @@ -1,220 +1,4 @@ -const { isEmpty } = require('lodash'); -const get = require('get-value'); -const { - processAxiosResponse, - getDynamicErrorType, -} = require('../../../adapters/utils/networkUtils'); -const { prepareProxyRequest, proxyRequest } = require('../../../adapters/network'); -const { NetworkError } = require('../../util/errorTypes'); -const tags = require('../../util/tags'); -const { ErrorDetailsExtractorBuilder } = require('../../../util/error-extractor'); - -/** - * Only under below mentioned scenario(s), add the errorCodes, subCodes etc,. to this map - * - * The actual API reference doc to which events from Rudderstack are being sent - * https://developers.facebook.com/docs/marketing-api/reference/ads-pixel/events/v13.0 - * - * The documents referred while formulating the error responses - * 1. https://developers.facebook.com/docs/graph-api/guides/error-handling/ - * - This seems like a generic document that contains errors possible for Graph API - * 2. https://developers.facebook.com/docs/marketing-api/error-reference/ - * - The doc seems to be more related to Marketing API - * 3. https://developers.facebook.com/docs/marketing-api/error-reference/ -{ - // A scenario where in we have to know the error with code and subcode, we can conclude that - // this error will have a particular status, statTags - code1: { - subCode1: { - status: , - // Only tags that are unique to this error needs to be provided - statTags: {}, - messageDetails: { - message: "", - field: - }, - - } - } -} - */ -const errorDetailsMap = { - 100: { - // This error talks about event being sent after seven days or so - 2804003: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - 2804001: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - 2804007: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - 2804016: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - 2804017: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - 2804019: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - 2804048: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessageField('error_user_title') - .build(), - // This error-subcode indicates that the business access token expired or is invalid or sufficient permissions are not provided - // since there is involvement of changes required on dashboard to make event successful - // for now, we are aborting this error-subCode combination - 33: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessage( - "Object with ID 'PIXEL_ID' does not exist, cannot be loaded due to missing permissions, or does not support this operation", - ) - .build(), - default: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessage('Invalid Parameter') - .build(), - }, - 1: { - // An unknown error occurred. - // This error may occur if you set level to adset but the correct value should be campaign - 99: new ErrorDetailsExtractorBuilder() - .setStatus(500) - .setMessage( - 'This error may occur if you set level to adset but the correct value should be campaign', - ) - .build(), - default: new ErrorDetailsExtractorBuilder() - .setStatus(500) - .setMessage('An unknown error occurred') - .build(), - }, - 190: { - 460: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessage( - 'The session has been invalidated because the user changed their password or Facebook has changed the session for security reasons', - ) - .build(), - default: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessage('Invalid OAuth 2.0 access token') - .build(), - }, - 3: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(400) - .setMessage('Capability or permissions issue.') - .build(), - }, - 2: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(500) - .setMessage('Temporary issue due to downtime.') - .build(), - }, - 341: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(500) - .setMessage('Application limit reached: Temporary issue due to downtime or throttling') - .build(), - }, - 368: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(500) - .setMessage('Temporarily blocked for policies violations.') - .build(), - }, - 5000: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(500) - .setMessage('Unknown Error Code') - .build(), - }, - 4: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(429) - .setMessage('API Too Many Calls') - .build(), - }, - 17: { - default: new ErrorDetailsExtractorBuilder() - .setStatus(429) - .setMessage('API User Too Many Calls') - .build(), - }, -}; - -const getErrorDetailsFromErrorMap = (error) => { - const { code, error_subcode: subCode } = error; - let errDetails; - if (!isEmpty(errorDetailsMap[code])) { - errDetails = errorDetailsMap[code][subCode] || errorDetailsMap[code]?.default; - } - return errDetails; -}; - -const getStatus = (error) => { - const errorDetail = getErrorDetailsFromErrorMap(error); - let errorStatus = 500; - const isErrorDetailEmpty = isEmpty(errorDetail); - if (isErrorDetailEmpty) { - // Unhandled error response - return {status: errorStatus, tags: { [tags.TAG_NAMES.META]: tags.METADATA.UNHANDLED_STATUS_CODE, } } - } - errorStatus = errorDetail.status; - - let errorMessage = errorDetail?.messageDetails?.message; - if (errorDetail?.messageDetails?.field) { - errorMessage = get(error, errorDetail?.messageDetails?.field); - } - - return { status: errorStatus, errorMessage }; -}; - -const errorResponseHandler = (destResponse) => { - const { response } = destResponse; - if (!response.error) { - // successful response from facebook pixel api - return; - } - const { error } = response; - const { status, errorMessage, tags: errorStatTags } = getStatus(error); - throw new NetworkError( - `${errorMessage || error.message || 'Unknown failure during response transformation'}`, - status, - { - ...errorStatTags, - [tags.TAG_NAMES.ERROR_TYPE]: getDynamicErrorType(status), - }, - { ...response, status: destResponse.status }, - ); -}; - -const destResponseHandler = (destinationResponse) => { - errorResponseHandler(destinationResponse); - return { - destinationResponse: destinationResponse.response, - message: 'Request Processed Successfully', - status: destinationResponse.status, - }; -}; - -function networkHandler() { - // The order of execution also happens in this way - this.prepareProxy = prepareProxyRequest; - this.proxy = proxyRequest; - this.processAxiosResponse = processAxiosResponse; - this.responseHandler = destResponseHandler; -} +const { networkHandler, errorResponseHandler } = require('../../util/facebookUtils/networkHandler'); module.exports = { networkHandler, diff --git a/src/v0/destinations/facebook_pixel/transform.js b/src/v0/destinations/facebook_pixel/transform.js index c81718dea0..02c416cfde 100644 --- a/src/v0/destinations/facebook_pixel/transform.js +++ b/src/v0/destinations/facebook_pixel/transform.js @@ -17,24 +17,34 @@ const { getIntegrationsObj, getValidDynamicFormConfig, simpleProcessRouterDest, + getHashFromArray, } = require('../../util'); const { - transformedPayloadData, getActionSource, - fetchUserData, handleProduct, handleSearch, handleProductListViewed, handleOrder, - formingFinalResponse, + populateCustomDataBasedOnCategory, + getCategoryFromEvent, } = require('./utils'); +const { + transformedPayloadData, + fetchUserData, + formingFinalResponse, +} = require('../../util/facebookUtils'); + const { InstrumentationError, ConfigurationError } = require('../../util/errorTypes'); -const responseBuilderSimple = (message, category, destination, categoryToContent) => { - const { Config } = destination; +const responseBuilderSimple = (message, category, destination) => { + const { Config, ID } = destination; const { pixelId, accessToken } = Config; + let { categoryToContent } = Config; + if (Array.isArray(categoryToContent)) { + categoryToContent = getValidDynamicFormConfig(categoryToContent, 'from', 'to', 'FB_PIXEL', ID); + } if (!pixelId) { throw new ConfigurationError('Pixel Id not found. Aborting'); @@ -57,14 +67,22 @@ const responseBuilderSimple = (message, category, destination, categoryToContent const endpoint = `https://graph.facebook.com/v17.0/${pixelId}/events?access_token=${accessToken}`; - const userData = fetchUserData(message, Config); - - let customData = {}; - let commonData = {}; + const userData = fetchUserData( + message, + Config, + MAPPING_CONFIG[CONFIG_CATEGORIES.USERDATA.name], + 'fb_pixel', + ); - commonData = constructPayload(message, MAPPING_CONFIG[CONFIG_CATEGORIES.COMMON.name], 'fb_pixel'); + const commonData = constructPayload( + message, + MAPPING_CONFIG[CONFIG_CATEGORIES.COMMON.name], + 'fb_pixel', + ); commonData.action_source = getActionSource(commonData, message?.channel); + let customData = {}; + if (category.type !== 'identify') { customData = flattenJson( extractCustomFields(message, customData, ['properties'], FB_PIXEL_DEFAULT_EXCLUSION), @@ -82,74 +100,20 @@ const responseBuilderSimple = (message, category, destination, categoryToContent customData, blacklistPiiProperties, whitelistPiiProperties, - category.standard, integrationsObj, ); message.properties = message.properties || {}; if (category.standard) { - switch (category.type) { - case 'product list viewed': - customData = { - ...customData, - ...handleProductListViewed(message, categoryToContent), - }; - commonData.event_name = 'ViewContent'; - break; - case 'product viewed': - customData = { - ...customData, - ...handleProduct(message, categoryToContent, valueFieldIdentifier), - }; - commonData.event_name = 'ViewContent'; - break; - case 'product added': - customData = { - ...customData, - ...handleProduct(message, categoryToContent, valueFieldIdentifier), - }; - commonData.event_name = 'AddToCart'; - break; - case 'order completed': - customData = { - ...customData, - ...handleOrder(message, categoryToContent), - }; - commonData.event_name = 'Purchase'; - break; - case 'products searched': { - customData = { - ...customData, - ...handleSearch(message), - }; - commonData.event_name = 'Search'; - break; - } - case 'checkout started': { - const orderPayload = handleOrder(message, categoryToContent); - delete orderPayload.content_name; - customData = { - ...customData, - ...orderPayload, - }; - commonData.event_name = 'InitiateCheckout'; - break; - } - case 'page_view': // executed when sending track calls but with standard type PageView - case 'page': // executed when page call is done with standard PageView turned on - customData = { ...customData }; - commonData.event_name = 'PageView'; - break; - case 'otherStandard': - customData = { ...customData }; - commonData.event_name = category.event; - break; - default: - throw new InstrumentationError( - `${category.standard} type of standard event does not exist`, - ); - } + commonData.event_name = category.eventName; + customData = populateCustomDataBasedOnCategory( + customData, + message, + category, + categoryToContent, + valueFieldIdentifier, + ); customData.currency = STANDARD_ECOMM_EVENTS_TYPE.includes(category.type) - ? message.properties.currency || 'USD' + ? message.properties?.currency || 'USD' : undefined; } else { const { type } = category; @@ -159,7 +123,7 @@ const responseBuilderSimple = (message, category, destination, categoryToContent : `Viewed a ${type}`; } if (type === 'simple track') { - customData.value = message.properties ? message.properties.revenue : undefined; + customData.value = message.properties?.revenue; delete customData.revenue; } } @@ -189,57 +153,6 @@ const responseBuilderSimple = (message, category, destination, categoryToContent ); }; -function getCategoryFromEvent(checkEvent) { - let category; - switch (checkEvent) { - case CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED.type: - case 'ViewContent': - category = CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED; - break; - case CONFIG_CATEGORIES.PRODUCT_VIEWED.type: - category = CONFIG_CATEGORIES.PRODUCT_VIEWED; - break; - case CONFIG_CATEGORIES.PRODUCT_ADDED.type: - case 'AddToCart': - category = CONFIG_CATEGORIES.PRODUCT_ADDED; - break; - case CONFIG_CATEGORIES.ORDER_COMPLETED.type: - case 'Purchase': - category = CONFIG_CATEGORIES.ORDER_COMPLETED; - break; - case CONFIG_CATEGORIES.PRODUCTS_SEARCHED.type: - case 'Search': - category = CONFIG_CATEGORIES.PRODUCTS_SEARCHED; - break; - case CONFIG_CATEGORIES.CHECKOUT_STARTED.type: - case 'InitiateCheckout': - category = CONFIG_CATEGORIES.CHECKOUT_STARTED; - break; - case 'AddToWishlist': - case 'AddPaymentInfo': - case 'Lead': - case 'CompleteRegistration': - case 'Contact': - case 'CustomizeProduct': - case 'Donate': - case 'FindLocation': - case 'Schedule': - case 'StartTrial': - case 'SubmitApplication': - case 'Subscribe': - category = CONFIG_CATEGORIES.OTHER_STANDARD; - category.event = checkEvent; - break; - case 'PageView': - category = CONFIG_CATEGORIES.PAGE_VIEW; - break; - default: - category = CONFIG_CATEGORIES.SIMPLE_TRACK; - break; - } - return category; -} - const processEvent = (message, destination) => { if (!message.type) { throw new InstrumentationError("'type' is missing"); @@ -265,7 +178,7 @@ const processEvent = (message, destination) => { } let eventsToEvents; - if (destination.Config.eventsToEvents) + if (Array.isArray(destination.Config.eventsToEvents)) { eventsToEvents = getValidDynamicFormConfig( destination.Config.eventsToEvents, 'from', @@ -273,21 +186,12 @@ const processEvent = (message, destination) => { 'FB_PIXEL', destination.ID, ); - let categoryToContent; - if (destination.Config.categoryToContent) - categoryToContent = getValidDynamicFormConfig( - destination.Config.categoryToContent, - 'from', - 'to', - 'FB_PIXEL', - destination.ID, - ); + } + const { advancedMapping } = destination.Config; - let standard; - let standardTo = ''; - let checkEvent; const messageType = message.type.toLowerCase(); let category; + let mappedEvent; switch (messageType) { case EventType.IDENTIFY: if (advancedMapping) { @@ -309,24 +213,17 @@ const processEvent = (message, destination) => { if (typeof message.event !== 'string') { throw new InstrumentationError('event name should be string'); } - standard = eventsToEvents; - if (standard) { - standardTo = standard.reduce((filtered, standards) => { - if (standards.from.toLowerCase() === message.event.toLowerCase()) { - filtered = standards.to; - } - return filtered; - }, ''); + if (eventsToEvents) { + const eventMappingHash = getHashFromArray(eventsToEvents); + mappedEvent = eventMappingHash[message.event.toLowerCase()]; } - checkEvent = standardTo !== '' ? standardTo : message.event.toLowerCase(); - - category = getCategoryFromEvent(checkEvent); + category = getCategoryFromEvent(mappedEvent || message.event.toLowerCase()); break; default: throw new InstrumentationError(`Message type ${messageType} not supported`); } // build the response - return responseBuilderSimple(message, category, destination, categoryToContent); + return responseBuilderSimple(message, category, destination); }; const process = (event) => processEvent(event.message, event.destination); diff --git a/src/v0/destinations/facebook_pixel/utils.js b/src/v0/destinations/facebook_pixel/utils.js index e1347278bf..d642c446fd 100644 --- a/src/v0/destinations/facebook_pixel/utils.js +++ b/src/v0/destinations/facebook_pixel/utils.js @@ -1,16 +1,7 @@ -const sha256 = require('sha256'); -const { - isObject, - getFieldValueFromMessage, - formatTimeStamp, - getIntegrationsObj, - constructPayload, - defaultPostRequestConfig, - defaultRequestConfig, -} = require('../../util'); -const { ACTION_SOURCES_VALUES, CONFIG_CATEGORIES, MAPPING_CONFIG } = require('./config'); - -const { InstrumentationError, TransformationError } = require('../../util/errorTypes'); +const { isObject } = require('../../util'); +const { ACTION_SOURCES_VALUES, CONFIG_CATEGORIES, OTHER_STANDARD_EVENTS } = require('./config'); +const { getContentType, getContentCategory } = require('../../util/facebookUtils'); +const { InstrumentationError } = require('../../util/errorTypes'); /** format revenue according to fb standards with max two decimal places. * @param revenue @@ -18,211 +9,13 @@ const { InstrumentationError, TransformationError } = require('../../util/errorT */ const formatRevenue = (revenue) => { - const formattedRevenue = parseFloat(parseFloat(revenue || 0).toFixed(2)); + const formattedRevenue = parseFloat(parseFloat(revenue || '0').toFixed(2)); if (!Number.isNaN(formattedRevenue)) { return formattedRevenue; } throw new InstrumentationError('Revenue could not be converted to number'); }; -/** - * - * @param {*} message Rudder Payload - * @param {*} defaultValue product / product_group - * @param {*} categoryToContent [ { from: 'clothing', to: 'product' } ] - * - * We will be mapping properties.category to user provided content else taking the default value as per ecomm spec - * If category is clothing it will be set to ["product"] - * @return Content Type array as defined in: - * - https://developers.facebook.com/docs/facebook-pixel/reference/#object-properties - */ -const getContentType = (message, defaultValue, categoryToContent) => { - let tempCategoryToContent = categoryToContent; - const { properties } = message; - const integrationsObj = getIntegrationsObj(message, 'fb_pixel'); - - if (integrationsObj?.contentType) { - return integrationsObj.contentType; - } - - let { category } = properties; - if (!category) { - const { products } = properties; - if (products && products.length > 0 && Array.isArray(products) && isObject(products[0])) { - category = products[0].category; - } - } else { - if (tempCategoryToContent === undefined) { - tempCategoryToContent = []; - } - const mapped = tempCategoryToContent; - const mappedTo = mapped.reduce((filtered, map) => { - let filter = filtered; - if (map.from === category) { - filter = map.to; - } - return filter; - }, ''); - if (mappedTo.length > 0) { - return mappedTo; - } - } - return defaultValue; -}; - -/** This function transforms the payloads according to the config settings and adds, removes or hashes pii data. -Also checks if it is a standard event and sends properties only if it is mentioned in our configs. -@param message --> the rudder payload - -{ - anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', - destination_props: { Fb: { app_id: 'RudderFbApp' } }, - context: { - device: { - id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', - manufacturer: 'Xiaomi', - model: 'Redmi 6', - name: 'xiaomi' - }, - network: { carrier: 'Banglalink' }, - os: { name: 'android', version: '8.1.0' }, - screen: { height: '100', density: 50 }, - traits: { - email: 'abc@gmail.com', - anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1' - } - }, - event: 'spin_result', - integrations: { - All: true, - FacebookPixel: { - dataProcessingOptions: [Array], - fbc: 'fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890', - fbp: 'fb.1.1554763741205.234567890', - fb_login_id: 'fb_id', - lead_id: 'lead_id' - } - }, - message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', - properties: { revenue: 400, additional_bet_index: 0 }, - timestamp: '2019-09-01T15:46:51.693229+05:30', - type: 'track' - } - -@param customData --> properties -{ revenue: 400, additional_bet_index: 0 } - -@param blacklistPiiProperties --> -[ { blacklistPiiProperties: 'phone', blacklistPiiHash: true } ] // hashes the phone property - -@param whitelistPiiProperties --> -[ { whitelistPiiProperties: 'email' } ] // sets email - - -@param eventCustomProperties --> -[ { eventCustomProperties: 'leadId' } ] // leadId if present will be set - -*/ - -const transformedPayloadData = ( - message, - customData, - blacklistPiiProperties, - whitelistPiiProperties, - integrationsObj, -) => { - const defaultPiiProperties = [ - 'email', - 'firstName', - 'lastName', - 'firstname', - 'lastname', - 'first_name', - 'last_name', - 'gender', - 'city', - 'country', - 'phone', - 'state', - 'zip', - 'postalCode', - 'birthday', - ]; - const clonedCustomData = { ...customData }; - const finalBlacklistPiiProperties = blacklistPiiProperties || []; - const finalWhitelistPiiProperties = whitelistPiiProperties || []; - const customBlackListedPiiProperties = {}; - - // create list of whitelisted properties - const customWhiteListedProperties = finalWhitelistPiiProperties.map( - (propObject) => propObject.whitelistPiiProperties, - ); - - // create map of blacklisted properties - finalBlacklistPiiProperties.forEach((property) => { - const singularConfigInstance = property; - customBlackListedPiiProperties[singularConfigInstance.blacklistPiiProperties] = - singularConfigInstance.blacklistPiiHash; - }); - - // remove properties which are default pii properties and not whitelisted - Object.keys(clonedCustomData).forEach((eventProp) => { - const isDefaultPiiProperty = defaultPiiProperties.includes(eventProp); - const isProperyWhiteListed = customWhiteListedProperties.includes(eventProp); - - if (Object.prototype.hasOwnProperty.call(customBlackListedPiiProperties, eventProp)) { - if (customBlackListedPiiProperties[eventProp]) { - // if customBlackListedPiiProperty is marked to be hashed from UI - clonedCustomData[eventProp] = integrationsObj?.hashed - ? String(message.properties[eventProp]) - : sha256(String(message.properties[eventProp])); - } else if (isDefaultPiiProperty && !isProperyWhiteListed) { - delete clonedCustomData[eventProp]; - } - } else if (isDefaultPiiProperty && !isProperyWhiteListed) { - delete clonedCustomData[eventProp]; - } - }); - - return clonedCustomData; -}; - -/** - * - * @param {*} message - * @returns fbc parameter which is a combined string of the parameters below - * - * version : "fb" (default) - * - * subdomainIndex : 1 ( recommended by facebook, as well as our JS SDK sets cookies on the main domain, i.e "facebook.com") - * - * creationTime : mapped to originalTimestamp converted in miliseconds - * - * fbclid : deduced query paramter from context.page.url - * - * ref: https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/fbp-and-fbc#fbc - */ -const deduceFbcParam = (message) => { - const url = message.context?.page?.url; - if (!url) { - return undefined; - } - let parseUrl; - try { - parseUrl = new URL(url); - } catch { - return undefined; - } - const paramsList = new URLSearchParams(parseUrl.search); - const fbclid = paramsList.get('fbclid'); - - if (!fbclid) { - return undefined; - } - const creationTime = getFieldValueFromMessage(message, 'timestamp'); - return `fb.1.${formatTimeStamp(creationTime)}.${fbclid}`; -}; - /** * Returns action source * ref : https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/server-event#action-source @@ -247,65 +40,10 @@ const getActionSource = (payload, channel) => { return actionSource; }; -/** - * This method gets content category with proper error-handling - * - * @param {*} category - * @returns The content category as a string - */ -const getContentCategory = (category) => { - let contentCategory = category; - if (Array.isArray(contentCategory)) { - contentCategory = contentCategory.map(String).join(','); - } - if ( - contentCategory && - typeof contentCategory !== 'string' && - typeof contentCategory !== 'object' - ) { - contentCategory = String(contentCategory); - } - if ( - contentCategory && - typeof contentCategory !== 'string' && - !Array.isArray(contentCategory) && - typeof contentCategory === 'object' - ) { - throw new InstrumentationError("'properties.category' must be either be a string or an array"); - } - return contentCategory; -}; - -const fetchUserData = (message, Config) => { - const integrationsObj = getIntegrationsObj(message, 'fb_pixel'); - const userData = constructPayload( - message, - MAPPING_CONFIG[CONFIG_CATEGORIES.USERDATA.name], - 'fb_pixel', - ); - const { removeExternalId } = Config; - if (removeExternalId) { - delete userData.external_id; - } - - if (userData) { - const split = userData.name?.split(' '); - if (split && split.length === 2) { - const hashValue = (value) => (integrationsObj?.hashed ? value : sha256(value)); - userData.fn = hashValue(split[0]); - userData.ln = hashValue(split[1]); - } - delete userData.name; - userData.fbc = userData.fbc || deduceFbcParam(message); - } - - return userData; -}; - /** * * @param {*} message Rudder element - * @param {*} categoryToContent [ { from: 'clothing', to: 'product' } ] + * @param {*} categoryToContent example: [ { from: 'clothing', to: 'product' } ] * * Handles order completed and checkout started types of specific events */ @@ -320,7 +58,7 @@ const handleOrder = (message, categoryToContent) => { if (products) { if (products.length > 0 && Array.isArray(products)) { products.forEach((singleProduct) => { - const pId = singleProduct.product_id || singleProduct.sku || singleProduct.id; + const pId = singleProduct?.product_id || singleProduct?.sku || singleProduct?.id; if (pId) { contentIds.push(pId); // required field for content @@ -353,7 +91,7 @@ const handleOrder = (message, categoryToContent) => { /** * * @param {*} message Rudder element - * @param {*} categoryToContent [ { from: 'clothing', to: 'product' } ] + * @param {*} categoryToContent example [ { from: 'clothing', to: 'product' } ] * * Handles product list viewed */ @@ -405,7 +143,7 @@ const handleProductListViewed = (message, categoryToContent) => { /** * * @param {*} message Rudder Payload - * @param {*} categoryToContent [ { from: 'clothing', to: 'product' } ] + * @param {*} categoryToContent Example: [ { from: 'clothing', to: 'product' } ] * @param {*} valueFieldIdentifier it can be either value or price which will be matched from properties and assigned to value for fb payload */ const handleProduct = (message, categoryToContent, valueFieldIdentifier) => { @@ -476,49 +214,110 @@ const handleSearch = (message) => { }; }; -const formingFinalResponse = ( - userData, - commonData, +const populateCustomDataBasedOnCategory = ( customData, - endpoint, - testDestination, - testEventCode, + message, + category, + categoryToContent, + valueFieldIdentifier, ) => { - if (userData && commonData) { - const response = defaultRequestConfig(); - response.endpoint = endpoint; - response.method = defaultPostRequestConfig.requestMethod; - const jsonStringify = JSON.stringify({ - user_data: userData, - ...commonData, - custom_data: customData, - }); - const payload = { - data: [jsonStringify], - }; - - // Ref: https://developers.facebook.com/docs/marketing-api/conversions-api/using-the-api/ - // Section: Test Events Tool - if (testDestination) { - payload.test_event_code = testEventCode; + let updatedCustomData; + switch (category.type) { + case 'product list viewed': + updatedCustomData = { + ...customData, + ...handleProductListViewed(message, categoryToContent), + }; + break; + case 'product viewed': + case 'product added': + updatedCustomData = { + ...customData, + ...handleProduct(message, categoryToContent, valueFieldIdentifier), + }; + break; + case 'order completed': + updatedCustomData = { + ...customData, + ...handleOrder(message, categoryToContent), + }; + break; + case 'products searched': { + updatedCustomData = { + ...customData, + ...handleSearch(message), + }; + break; + } + case 'checkout started': { + const orderPayload = handleOrder(message, categoryToContent); + delete orderPayload.content_name; + updatedCustomData = { + ...customData, + ...orderPayload, + }; + break; } - response.body.FORM = payload; - return response; + case 'page_view': // executed when sending track calls but with standard type PageView + case 'page': // executed when page call is done with standard PageView turned on + case 'otherStandard': + updatedCustomData = { ...customData }; + break; + default: + throw new InstrumentationError(`${category.standard} type of standard event does not exist`); } - // fail-safety for developer error - throw new TransformationError('Payload could not be constructed'); + return updatedCustomData; +}; + +const getCategoryFromEvent = (eventName) => { + let category; + switch (eventName) { + case CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED.type: + case CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED.eventName: + category = CONFIG_CATEGORIES.PRODUCT_LIST_VIEWED; + break; + case CONFIG_CATEGORIES.PRODUCT_VIEWED.type: + category = CONFIG_CATEGORIES.PRODUCT_VIEWED; + break; + case CONFIG_CATEGORIES.PRODUCT_ADDED.type: + case CONFIG_CATEGORIES.PRODUCT_ADDED.eventName: + category = CONFIG_CATEGORIES.PRODUCT_ADDED; + break; + case CONFIG_CATEGORIES.ORDER_COMPLETED.type: + case CONFIG_CATEGORIES.ORDER_COMPLETED.eventName: + category = CONFIG_CATEGORIES.ORDER_COMPLETED; + break; + case CONFIG_CATEGORIES.PRODUCTS_SEARCHED.type: + case CONFIG_CATEGORIES.PRODUCTS_SEARCHED.eventName: + category = CONFIG_CATEGORIES.PRODUCTS_SEARCHED; + break; + case CONFIG_CATEGORIES.CHECKOUT_STARTED.type: + case CONFIG_CATEGORIES.CHECKOUT_STARTED.eventName: + category = CONFIG_CATEGORIES.CHECKOUT_STARTED; + break; + case CONFIG_CATEGORIES.PAGE_VIEW.eventName: + category = CONFIG_CATEGORIES.PAGE_VIEW; + break; + default: + category = CONFIG_CATEGORIES.SIMPLE_TRACK; + break; + } + + if (OTHER_STANDARD_EVENTS.includes(eventName)) { + category = CONFIG_CATEGORIES.OTHER_STANDARD; + category.eventName = eventName; + } + + return category; }; module.exports = { - deduceFbcParam, formatRevenue, - getContentType, - transformedPayloadData, getActionSource, - fetchUserData, handleProduct, handleSearch, handleProductListViewed, handleOrder, - formingFinalResponse, + populateCustomDataBasedOnCategory, + getCategoryFromEvent, }; diff --git a/src/v0/destinations/hs/HSTransform-v1.js b/src/v0/destinations/hs/HSTransform-v1.js index 387ecbf63f..30546ad8f6 100644 --- a/src/v0/destinations/hs/HSTransform-v1.js +++ b/src/v0/destinations/hs/HSTransform-v1.js @@ -34,6 +34,7 @@ const { getEmailAndUpdatedProps, formatPropertyValueForIdentify, getHsSearchId, + populateTraits, } = require('./util'); const { JSON_MIME_TYPE } = require('../../util/constant'); @@ -52,7 +53,7 @@ const { JSON_MIME_TYPE } = require('../../util/constant'); */ const processLegacyIdentify = async (message, destination, propertyMap) => { const { Config } = destination; - const traits = getFieldValueFromMessage(message, 'traits'); + let traits = getFieldValueFromMessage(message, 'traits'); const mappedToDestination = get(message, MappedToDestinationKey); const operation = get(message, 'context.hubspotOperation'); // if mappedToDestination is set true, then add externalId to traits @@ -80,6 +81,8 @@ const processLegacyIdentify = async (message, destination, propertyMap) => { )}/${hsSearchId}`; response.method = defaultPatchRequestConfig.requestMethod; } + + traits = await populateTraits(propertyMap, traits, destination); response.body.JSON = removeUndefinedAndNullValues({ properties: traits }); response.source = 'rETL'; response.operation = operation; diff --git a/src/v0/destinations/hs/HSTransform-v2.js b/src/v0/destinations/hs/HSTransform-v2.js index 75696b4e96..26c12d3eea 100644 --- a/src/v0/destinations/hs/HSTransform-v2.js +++ b/src/v0/destinations/hs/HSTransform-v2.js @@ -41,6 +41,7 @@ const { searchContacts, getEventAndPropertiesFromConfig, getHsSearchId, + populateTraits, } = require('./util'); const { JSON_MIME_TYPE } = require('../../util/constant'); @@ -69,7 +70,7 @@ const addHsAuthentication = (response, Config) => { */ const processIdentify = async (message, destination, propertyMap) => { const { Config } = destination; - const traits = getFieldValueFromMessage(message, 'traits'); + let traits = getFieldValueFromMessage(message, 'traits'); const mappedToDestination = get(message, MappedToDestinationKey); const operation = get(message, 'context.hubspotOperation'); const externalIdObj = getDestinationExternalIDObjectForRetl(message, 'HS'); @@ -124,6 +125,7 @@ const processIdentify = async (message, destination, propertyMap) => { response.method = defaultPatchRequestConfig.requestMethod; } + traits = await populateTraits(propertyMap, traits, destination); response.body.JSON = removeUndefinedAndNullValues({ properties: traits }); response.source = 'rETL'; response.operation = operation; diff --git a/src/v0/destinations/hs/transform.js b/src/v0/destinations/hs/transform.js index 3f8010ff49..a2326e0395 100644 --- a/src/v0/destinations/hs/transform.js +++ b/src/v0/destinations/hs/transform.js @@ -88,6 +88,7 @@ const processRouterDest = async (inputs, reqMetadata) => { if (mappedToDestination && GENERIC_TRUE_VALUES.includes(mappedToDestination?.toString())) { // skip splitting the batches to inserts and updates if object it is an association if (objectType.toLowerCase() !== 'association') { + propertyMap = await getProperties(destination); // get info about existing objects and splitting accordingly. tempInputs = await splitEventsForCreateUpdate(tempInputs, destination); } diff --git a/src/v0/destinations/hs/util.js b/src/v0/destinations/hs/util.js index ca92ed13cd..b5f5727461 100644 --- a/src/v0/destinations/hs/util.js +++ b/src/v0/destinations/hs/util.js @@ -175,6 +175,18 @@ const validatePayloadDataTypes = (propertyMap, hsSupportedKey, value, traitsKey) return propValue; }; +/** + * Converts date to UTC Midnight TimeStamp + * @param {*} propValue + * @returns + */ +const getUTCMidnightTimeStampValue = (propValue) => { + const time = propValue; + const date = new Date(time); + date.setUTCHours(0, 0, 0, 0); + return date.getTime(); +}; + /** * add addtional properties in the payload that is provided in traits * only when it matches with HS properties (pre-defined/created from dashboard) @@ -204,10 +216,7 @@ const getTransformedJSON = async (message, destination, propertyMap) => { if (!rawPayload[traitsKey] && propertyMap[hsSupportedKey]) { let propValue = traits[traitsKey]; if (propertyMap[hsSupportedKey] === 'date') { - const time = propValue; - const date = new Date(time); - date.setUTCHours(0, 0, 0, 0); - propValue = date.getTime(); + propValue = getUTCMidnightTimeStampValue(propValue); } rawPayload[hsSupportedKey] = validatePayloadDataTypes( @@ -459,7 +468,7 @@ const getEventAndPropertiesFromConfig = (message, destination, payload) => { */ const getExistingData = async (inputs, destination) => { const { Config } = destination; - const values = []; + let values = []; let searchResponse; let updateHubspotIds = []; const firstMessage = inputs[0].message; @@ -478,8 +487,10 @@ const getExistingData = async (inputs, destination) => { inputs.map(async (input) => { const { message } = input; const { destinationExternalId } = getDestinationExternalIDInfoForRetl(message, DESTINATION); - values.push(destinationExternalId); + values.push(destinationExternalId.toString().toLowerCase()); }); + + values = Array.from(new Set(values)); const requestData = { filterGroups: [ { @@ -626,6 +637,31 @@ const getHsSearchId = (message) => { return { hsSearchId }; }; +/** + * returns updated traits + * @param {*} propertyMap + * @param {*} traits + * @param {*} destination + */ +const populateTraits = async (propertyMap, traits, destination) => { + const populatedTraits = traits; + let propertyToTypeMap = propertyMap; + if (!propertyToTypeMap) { + // fetch HS properties + propertyToTypeMap = await getProperties(destination); + } + + const keys = Object.keys(populatedTraits); + keys.forEach((key) => { + const value = populatedTraits[key]; + if (propertyToTypeMap[key] === 'date') { + populatedTraits[key] = getUTCMidnightTimeStampValue(value); + } + }); + + return populatedTraits; +}; + module.exports = { validateDestinationConfig, formatKey, @@ -639,4 +675,6 @@ module.exports = { splitEventsForCreateUpdate, getHsSearchId, validatePayloadDataTypes, + getUTCMidnightTimeStampValue, + populateTraits, }; diff --git a/src/v0/destinations/june/config.js b/src/v0/destinations/june/config.js index 86503a3926..ba5030dbad 100644 --- a/src/v0/destinations/june/config.js +++ b/src/v0/destinations/june/config.js @@ -22,7 +22,7 @@ const CONFIG_CATEGORIES = { name: 'JunePageConfig', type: 'page', endpoint: `${BASE_ENDPOINT}/page`, - } + }, }; const MAPPING_CONFIG = getMappingConfig(CONFIG_CATEGORIES, __dirname); diff --git a/src/v0/destinations/june/data/JuneGroupConfig.json b/src/v0/destinations/june/data/JuneGroupConfig.json index dabd16a8e5..9005132169 100644 --- a/src/v0/destinations/june/data/JuneGroupConfig.json +++ b/src/v0/destinations/june/data/JuneGroupConfig.json @@ -28,9 +28,7 @@ "sourceFromGenericMap": true, "required": false, "metadata": { - "excludes": [ - "groupId" - ] + "excludes": ["groupId"] } }, { @@ -38,13 +36,7 @@ "sourceKeys": "context", "required": false, "metadata": { - "excludes": [ - "page", - "traits", - "sessionId", - "sessionStart", - "consentManagement" - ] + "excludes": ["page", "traits", "sessionId", "sessionStart", "consentManagement"] } } -] \ No newline at end of file +] diff --git a/src/v0/destinations/june/data/JuneIdentifyConfig.json b/src/v0/destinations/june/data/JuneIdentifyConfig.json index 62ffff6ff6..d49406a5ed 100644 --- a/src/v0/destinations/june/data/JuneIdentifyConfig.json +++ b/src/v0/destinations/june/data/JuneIdentifyConfig.json @@ -18,10 +18,7 @@ }, { "destKey": "traits", - "sourceKeys": [ - "context.traits", - "traits" - ], + "sourceKeys": ["context.traits", "traits"], "required": false }, { @@ -29,13 +26,7 @@ "sourceKeys": "context", "required": false, "metadata": { - "excludes": [ - "page", - "traits", - "sessionId", - "sessionStart", - "consentManagement" - ] + "excludes": ["page", "traits", "sessionId", "sessionStart", "consentManagement"] } } -] \ No newline at end of file +] diff --git a/src/v0/destinations/june/data/JunePageConfig.json b/src/v0/destinations/june/data/JunePageConfig.json index 0f2982e8d6..96791ef09f 100644 --- a/src/v0/destinations/june/data/JunePageConfig.json +++ b/src/v0/destinations/june/data/JunePageConfig.json @@ -1,49 +1,41 @@ [ - { - "destKey": "userId", - "sourceKeys": "userIdOnly", - "sourceFromGenericMap": true, - "required": false - }, - { - "destKey": "anonymousId", - "sourceKeys": "anonymousId", - "required": false - }, - { - "destKey": "timestamp", - "sourceKeys": "timestamp", - "sourceFromGenericMap": true, - "required": false - }, - { - "destKey": "properties", - "sourceKeys": "properties", - "required": true, - "metadata": { - "excludes": [ - "groupId" - ] - } - }, - { - "destKey": "context", - "sourceKeys": "context", - "required": false, - "metadata": { - "excludes": [ - "page", - "traits", - "sessionId", - "sessionStart", - "consentManagement" - ] - } - }, - { - "destKey": "context.groupId", - "sourceKeys": "groupId", - "sourceFromGenericMap": true, - "required": false + { + "destKey": "userId", + "sourceKeys": "userIdOnly", + "sourceFromGenericMap": true, + "required": false + }, + { + "destKey": "anonymousId", + "sourceKeys": "anonymousId", + "required": false + }, + { + "destKey": "timestamp", + "sourceKeys": "timestamp", + "sourceFromGenericMap": true, + "required": false + }, + { + "destKey": "properties", + "sourceKeys": "properties", + "required": true, + "metadata": { + "excludes": ["groupId"] } -] \ No newline at end of file + }, + { + "destKey": "context", + "sourceKeys": "context", + "required": false, + "metadata": { + "excludes": ["page", "traits", "sessionId", "sessionStart", "consentManagement"] + } + }, + { + "destKey": "context.groupId", + "sourceKeys": "groupId", + "sourceFromGenericMap": true, + "required": false + } +] diff --git a/src/v0/destinations/june/data/JuneTrackConfig.json b/src/v0/destinations/june/data/JuneTrackConfig.json index 6f873363ad..839c331ae2 100644 --- a/src/v0/destinations/june/data/JuneTrackConfig.json +++ b/src/v0/destinations/june/data/JuneTrackConfig.json @@ -34,13 +34,7 @@ "sourceKeys": "context", "required": false, "metadata": { - "excludes": [ - "page", - "traits", - "sessionId", - "sessionStart", - "consentManagement" - ] + "excludes": ["page", "traits", "sessionId", "sessionStart", "consentManagement"] } } ] diff --git a/src/v0/destinations/june/transform.js b/src/v0/destinations/june/transform.js index 14216b5d14..f85cb0fd3d 100644 --- a/src/v0/destinations/june/transform.js +++ b/src/v0/destinations/june/transform.js @@ -50,7 +50,7 @@ const genericResponseBuilder = (message, destination, category) => { const { endpoint, name } = CONFIG_CATEGORIES[category]; const payload = constructPayload(message, MAPPING_CONFIG[name]); return responseBuilder(payload, endpoint, destination); -} +}; const processEvent = (message, destination) => { if (!message.type) { @@ -85,4 +85,4 @@ const processRouterDest = async (inputs, reqMetadata) => { return respList; }; -module.exports = { process, processRouterDest }; \ No newline at end of file +module.exports = { process, processRouterDest }; diff --git a/src/v0/destinations/mailchimp/transform.js b/src/v0/destinations/mailchimp/transform.js index 70b37200f4..ced92ddea1 100644 --- a/src/v0/destinations/mailchimp/transform.js +++ b/src/v0/destinations/mailchimp/transform.js @@ -62,7 +62,10 @@ const trackResponseBuilder = (message, { Config }) => { if (processedPayload?.properties) { processedPayload.properties = stringifyPropertiesValues(processedPayload.properties); } - if (processedPayload.name && !(processedPayload.name.length >= 2 && processedPayload.name.length <= 30)) { + if ( + processedPayload.name && + !(processedPayload.name.length >= 2 && processedPayload.name.length <= 30) + ) { throw new InstrumentationError('Event name should be between 2 and 30 characters'); } processedPayload.name = processedPayload.name.trim().replace(/\s+/g, '_'); diff --git a/src/v0/destinations/mp/transform.js b/src/v0/destinations/mp/transform.js index bdae00e1c2..10e8eb0779 100644 --- a/src/v0/destinations/mp/transform.js +++ b/src/v0/destinations/mp/transform.js @@ -455,10 +455,10 @@ const processRouterDest = async (inputs, reqMetadata) => { const { engageEvents, groupsEvents, trackEvents, importEvents, batchErrorRespList } = groupEventsByEndpoint(transformedPayloads); - const engageRespList = batchEvents(engageEvents, ENGAGE_MAX_BATCH_SIZE); - const groupsRespList = batchEvents(groupsEvents, GROUPS_MAX_BATCH_SIZE); - const trackRespList = batchEvents(trackEvents, TRACK_MAX_BATCH_SIZE); - const importRespList = batchEvents(importEvents, IMPORT_MAX_BATCH_SIZE); + const engageRespList = batchEvents(engageEvents, ENGAGE_MAX_BATCH_SIZE, reqMetadata); + const groupsRespList = batchEvents(groupsEvents, GROUPS_MAX_BATCH_SIZE, reqMetadata); + const trackRespList = batchEvents(trackEvents, TRACK_MAX_BATCH_SIZE, reqMetadata); + const importRespList = batchEvents(importEvents, IMPORT_MAX_BATCH_SIZE, reqMetadata); const batchSuccessRespList = [ ...engageRespList, ...groupsRespList, diff --git a/src/v0/destinations/mp/util.js b/src/v0/destinations/mp/util.js index 35c530855e..abc4134302 100644 --- a/src/v0/destinations/mp/util.js +++ b/src/v0/destinations/mp/util.js @@ -11,6 +11,7 @@ const { batchMultiplexedEvents, getSuccessRespEvents, defaultBatchRequestConfig, + IsGzipSupported, } = require('../../util'); const { ConfigCategory, @@ -212,20 +213,29 @@ const groupEventsByEndpoint = (events) => { }; }; -const generateBatchedPayloadForArray = (events) => { +const generateBatchedPayloadForArray = (events, reqMetadata) => { const { batchedRequest } = defaultBatchRequestConfig(); + const firstEvent = events[0]; + batchedRequest.endpoint = firstEvent.endpoint; + batchedRequest.headers = firstEvent.headers; + batchedRequest.params = firstEvent.params; + const batchResponseList = events.flatMap((event) => JSON.parse(event.body.JSON_ARRAY.batch)); - batchedRequest.body.JSON_ARRAY = { batch: JSON.stringify(batchResponseList) }; - batchedRequest.endpoint = events[0].endpoint; - batchedRequest.headers = events[0].headers; - batchedRequest.params = events[0].params; + + if (IsGzipSupported(reqMetadata) && firstEvent.endpoint.includes('import')) { + // Gzipping the payload for /import endpoint + batchedRequest.body.GZIP = { payload: JSON.stringify(batchResponseList) }; + } else { + batchedRequest.body.JSON_ARRAY = { batch: JSON.stringify(batchResponseList) }; + } + return batchedRequest; }; -const batchEvents = (successRespList, maxBatchSize) => { +const batchEvents = (successRespList, maxBatchSize, reqMetadata) => { const batchedEvents = batchMultiplexedEvents(successRespList, maxBatchSize); return batchedEvents.map((batch) => { - const batchedRequest = generateBatchedPayloadForArray(batch.events); + const batchedRequest = generateBatchedPayloadForArray(batch.events, reqMetadata); return getSuccessRespEvents(batchedRequest, batch.metadata, batch.destination, true); }); }; @@ -286,6 +296,7 @@ module.exports = { createIdentifyResponse, isImportAuthCredentialsAvailable, groupEventsByEndpoint, + generateBatchedPayloadForArray, batchEvents, combineBatchRequestsWithSameJobIds, }; diff --git a/src/v0/destinations/mp/util.test.js b/src/v0/destinations/mp/util.test.js index 43594fba6d..b5a1e90a9a 100644 --- a/src/v0/destinations/mp/util.test.js +++ b/src/v0/destinations/mp/util.test.js @@ -1,9 +1,10 @@ const { combineBatchRequestsWithSameJobIds, - groupEventsByType, groupEventsByEndpoint, batchEvents, + generateBatchedPayloadForArray, } = require('./util'); +const { FEATURE_GZIP_SUPPORT } = require('../../util/constant'); const destinationMock = { Config: { @@ -488,4 +489,85 @@ describe('Mixpanel utils test', () => { expect(combineBatchRequestsWithSameJobIds(input)).toEqual(expectedOutput); }); }); + + describe('Unit test cases for generateBatchedPayloadForArray', () => { + it('should generate a batched payload with GZIP payload for /import endpoint when given an array of events', () => { + const events = [ + { + body: { JSON_ARRAY: { batch: '[{"event": "event1"}]' } }, + endpoint: '/import', + headers: { 'Content-Type': 'application/json' }, + params: {}, + }, + { + body: { JSON_ARRAY: { batch: '[{"event": "event2"}]' } }, + endpoint: '/import', + headers: { 'Content-Type': 'application/json' }, + params: {}, + }, + ]; + const expectedBatchedRequest = { + body: { + FORM: {}, + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + GZIP: { + payload: '[{"event":"event1"},{"event":"event2"}]', + }, + }, + endpoint: '/import', + files: {}, + headers: { 'Content-Type': 'application/json' }, + method: 'POST', + params: {}, + type: 'REST', + version: '1', + }; + + const result = generateBatchedPayloadForArray(events, { + features: { [FEATURE_GZIP_SUPPORT]: true }, + }); + + expect(result).toEqual(expectedBatchedRequest); + }); + + it('should generate a batched payload with JSON_ARRAY body when given an array of events', () => { + const events = [ + { + body: { JSON_ARRAY: { batch: '[{"event": "event1"}]' } }, + endpoint: '/endpoint', + headers: { 'Content-Type': 'application/json' }, + params: {}, + }, + { + body: { JSON_ARRAY: { batch: '[{"event": "event2"}]' } }, + endpoint: '/endpoint', + headers: { 'Content-Type': 'application/json' }, + params: {}, + }, + ]; + const expectedBatchedRequest = { + body: { + FORM: {}, + JSON: {}, + JSON_ARRAY: { batch: '[{"event":"event1"},{"event":"event2"}]' }, + XML: {}, + }, + endpoint: '/endpoint', + files: {}, + headers: { 'Content-Type': 'application/json' }, + method: 'POST', + params: {}, + type: 'REST', + version: '1', + }; + + const result = generateBatchedPayloadForArray(events, { + features: { [FEATURE_GZIP_SUPPORT]: true }, + }); + + expect(result).toEqual(expectedBatchedRequest); + }); + }); }); diff --git a/src/v0/destinations/personalize/transform.js b/src/v0/destinations/personalize/transform.js index bb547f7b28..3523987a89 100644 --- a/src/v0/destinations/personalize/transform.js +++ b/src/v0/destinations/personalize/transform.js @@ -54,7 +54,9 @@ const putEventsHandler = (message, destination) => { if (!(key.toUpperCase() === 'IMPRESSION' || key.toUpperCase() === 'EVENT_VALUE')) outputEvent[lodash.camelCase(key)] = String(value); else if (key.toUpperCase() === 'IMPRESSION') { - outputEvent[lodash.camelCase(key)] = Array.isArray(value) ? value.map(String) : [String(value)]; + outputEvent[lodash.camelCase(key)] = Array.isArray(value) + ? value.map(String) + : [String(value)]; outputEvent[lodash.camelCase(key)] = lodash.without( outputEvent[lodash.camelCase(key)], undefined, diff --git a/src/v0/destinations/posthog/transform.js b/src/v0/destinations/posthog/transform.js index 6aae98f46d..9f639b59de 100644 --- a/src/v0/destinations/posthog/transform.js +++ b/src/v0/destinations/posthog/transform.js @@ -84,7 +84,7 @@ const responseBuilderSimple = (message, category, destination) => { } if (!payload.timestamp && isDefinedAndNotNull(payload.properties?.timestamp)) { - payload.timestamp = payload.properties.timestamp + payload.timestamp = payload.properties.timestamp; } payload.properties = { diff --git a/src/v0/destinations/salesforce/utils.js b/src/v0/destinations/salesforce/utils.js index 840c42aa35..3ffa4e56d8 100644 --- a/src/v0/destinations/salesforce/utils.js +++ b/src/v0/destinations/salesforce/utils.js @@ -44,7 +44,7 @@ const salesforceResponseHandler = (destResponse, sourceMessage, authKey) => { } else if ( status === 400 && matchErrorCode('CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY') && - response.message.includes('UNABLE_TO_LOCK_ROW') + response?.message?.includes('UNABLE_TO_LOCK_ROW') ) { // handling the error case where the record is locked by another background job // this is a retryable error diff --git a/src/v0/destinations/sendgrid/transform.js b/src/v0/destinations/sendgrid/transform.js index 4e68b34c7d..d2f5b38b70 100644 --- a/src/v0/destinations/sendgrid/transform.js +++ b/src/v0/destinations/sendgrid/transform.js @@ -211,7 +211,10 @@ const batchEvents = (successRespList) => { "contactListIds3": [{message : {}, metadata : {}, destination: {}}], "contactListIds4": [{message : {}, metadata : {}, destination: {}}] */ - const eventGroups = lodash.groupBy(identifyCalls, (event) => event.message.body.JSON.contactListIds); + const eventGroups = lodash.groupBy( + identifyCalls, + (event) => event.message.body.JSON.contactListIds, + ); Object.keys(eventGroups).forEach((combination) => { const eventChunks = lodash.chunk(eventGroups[combination], MAX_BATCH_SIZE); diff --git a/src/v0/destinations/snapchat_conversion/config.js b/src/v0/destinations/snapchat_conversion/config.js index fce2edf8e4..e0126ea3b1 100644 --- a/src/v0/destinations/snapchat_conversion/config.js +++ b/src/v0/destinations/snapchat_conversion/config.js @@ -4,7 +4,8 @@ const ENDPOINT = 'https://tr.snapchat.com/v2/conversion'; const MAX_BATCH_SIZE = 2000; const ConfigCategory = { - COMMON: { name: 'SnapchatCommonConfig' }, + DEFAULT: { name: 'SnapchatTrackDefaultConfig' }, + TRACK_COMMON: { name: 'TrackEventCommonConfig' }, /* E-Commerce Events */ // Ref - https://www.rudderstack.com/docs/rudderstack-api/api-specification/rudderstack-ecommerce-events-specification/ /* Browsing Section */ @@ -80,7 +81,6 @@ module.exports = { ConfigCategory, eventNameMapping, mappingConfig, - trackCommonConfig: mappingConfig[ConfigCategory.COMMON.name], MAX_BATCH_SIZE, - pageTypeToTrackEvent + pageTypeToTrackEvent, }; diff --git a/src/v0/destinations/snapchat_conversion/data/SnapchatCommonConfig.json b/src/v0/destinations/snapchat_conversion/data/SnapchatTrackDefaultConfig.json similarity index 100% rename from src/v0/destinations/snapchat_conversion/data/SnapchatCommonConfig.json rename to src/v0/destinations/snapchat_conversion/data/SnapchatTrackDefaultConfig.json diff --git a/src/v0/destinations/snapchat_conversion/data/TrackEventCommonConfig.json b/src/v0/destinations/snapchat_conversion/data/TrackEventCommonConfig.json new file mode 100644 index 0000000000..42b61fd605 --- /dev/null +++ b/src/v0/destinations/snapchat_conversion/data/TrackEventCommonConfig.json @@ -0,0 +1,90 @@ +[ + { + "destKey": "description", + "sourceKeys": "properties.description", + "required": false + }, + { + "destKey": "brands", + "sourceKeys": "properties.brands", + "required": false, + "metadata": { + "type": "IsArray" + } + }, + { + "destKey": "event_tag", + "sourceKeys": "properties.event_tag", + "required": false + }, + { + "destKey": "click_id", + "sourceKeys": "properties.click_id", + "required": false + }, + { + "destKey": "level", + "sourceKeys": "properties.level", + "required": false + }, + { + "destKey": "uuid_c1", + "sourceKeys": "properties.uuid_c1", + "required": false + }, + { + "destKey": "customer_status", + "sourceKeys": "properties.customer_status", + "required": false + }, + { + "destKey": "data", + "sourceKeys": "properties.data", + "required": false + }, + { + "destKey": "att_status", + "sourceKeys": "properties.att_status", + "required": false + }, + { + "destKey": "sign_up_method", + "sourceKeys": "properties.sign_up_method", + "required": false + }, + { + "destKey": "advertiser_cookie_1", + "sourceKeys": "properties.advertiser_cookie_1", + "required": false + }, + { + "destKey": "delivery_method", + "sourceKeys": "properties.delivery_method", + "required": false + }, + { + "sourceKeys": "context.device.model", + "destKey": "device_model", + "required": false + }, + { + "sourceKeys": "country", + "destKey": "country", + "sourceFromGenericMap": true, + "required": false + }, + { + "sourceKeys": "region", + "destKey": "region", + "sourceFromGenericMap": true, + "required": false + }, + { + "sourceKeys": "context.userAgent", + "destKey": "user_agent", + "metadata": { + "type": "toLower" + }, + "required": false + } +] diff --git a/src/v0/destinations/snapchat_conversion/transform.js b/src/v0/destinations/snapchat_conversion/transform.js index f4360cc458..49776935de 100644 --- a/src/v0/destinations/snapchat_conversion/transform.js +++ b/src/v0/destinations/snapchat_conversion/transform.js @@ -110,18 +110,8 @@ const populateHashedValues = (payload, message) => { } return updatedPayload; }; -const getEventProperties = (message) => ({ - description: get(message, 'properties.description'), - brands: Array.isArray(message.properties?.brands) ? get(message, 'properties.brands') : undefined, - customer_status: get(message, 'properties.customer_status'), - uuid_c1: get(message, 'properties.uuid_c1'), - level: get(message, 'properties.level'), - click_id: get(message, 'properties.click_id'), - event_tag: get(message, 'properties.event_tag'), - country: getFieldValueFromMessage(message, 'country'), - region: getFieldValueFromMessage(message, 'region'), - user_agent: message.context?.userAgent?.toString()?.toLowerCase(), -}); +const getEventCommonProperties = (message) => + constructPayload(message, mappingConfig[ConfigCategory.TRACK_COMMON.name]); const validateEventConfiguration = (eventConversionType, pixelId, snapAppId, appId) => { if ((eventConversionType === 'WEB' || eventConversionType === 'OFFLINE') && !pixelId) { throw new ConfigurationError('Pixel Id is required for web and offline events'); @@ -171,19 +161,6 @@ const addSpecificEventDetails = ( } return updatedPayload; }; -const handleDeduplication = (payload, enableDeduplication, deduplicationKey, message) => { - if (enableDeduplication) { - const dedupId = deduplicationKey || 'messageId'; - const clientDedupId = get(message, dedupId); - if (!clientDedupId) { - throw new InstrumentationError( - 'Deduplication enabled but no deduplication key provided in the message', - ); - } - return clientDedupId; - } - return undefined; -}; const getEventConversionType = (message) => { const channel = get(message, 'channel'); let eventConversionType = message?.properties?.eventConversionType; @@ -274,7 +251,7 @@ const trackResponseBuilder = (message, { Config }, mappedEvent) => { payload.event_type = eventNameMapping[event.toLowerCase()]; break; default: - payload = constructPayload(message, mappingConfig[ConfigCategory.COMMON.name]); + payload = constructPayload(message, mappingConfig[ConfigCategory.DEFAULT.name]); payload.event_type = eventNameMapping[event.toLowerCase()]; break; } @@ -282,7 +259,7 @@ const trackResponseBuilder = (message, { Config }, mappedEvent) => { throw new InstrumentationError(`Event ${event} doesn't match with Snapchat Events!`); } - payload = { ...payload, ...getEventProperties(message) }; + payload = { ...payload, ...getEventCommonProperties(message) }; payload = populateHashedValues(payload, message); validateRequiredFields(payload); payload.timestamp = getFieldValueFromMessage(message, 'timestamp'); @@ -310,8 +287,6 @@ const trackResponseBuilder = (message, { Config }, mappedEvent) => { snapAppId, appId, ); - payload.client_dedup_id = handleDeduplication(enableDeduplication, deduplicationKey, message); - // adding for deduplication for more than one source if (enableDeduplication) { const dedupId = deduplicationKey || 'messageId'; @@ -364,7 +339,7 @@ const process = (event) => { const messageType = message.type.toLowerCase(); let response; if (messageType === EventType.PAGE) { - response = trackResponseBuilder(message, destination, pageTypeToTrackEvent); + response = [trackResponseBuilder(message, destination, pageTypeToTrackEvent)]; } else if (messageType === EventType.TRACK) { const mappedEvents = eventMappingHandler(message, destination); if (mappedEvents.length > 0) { diff --git a/src/v0/sources/ortto/event_mapping.json b/src/v0/sources/ortto/event_mapping.json new file mode 100644 index 0000000000..f2075c7cd3 --- /dev/null +++ b/src/v0/sources/ortto/event_mapping.json @@ -0,0 +1,95 @@ +{ + "act::s": "Sent email", + "act::c": "Clicked email", + "act::o": "Opened email", + "act::r": "Received email", + "act::b": "Bounced email", + "act::sk": "Skipped email", + "act::rt": "Redacted email", + "act::f": "Forwarded email", + "act::i": "Invalid email", + "act::v": "Viewed email online", + "act::d": "Deferred email", + + "act::ss": "Incident Triggered", + "act::ds": "Incident Unacknowledged", + "act::cs": "Service Created", + "act::is": "Service Deleted", + "act::bs": "Service Updated", + "act::des": "Service Updated", + "act::rs": "Service Updated", + "act::rtss": "Service Updated", + "act::ras": "Service Updated", + "act::cos": "Service Updated", + "act::rtns": "Service Updated", + "act::sf": "Submitted form", + "act::oos-a": "Opted out from SMS audience", + "act::ois-a": "Opted in to SMS audience", + "act::oos-all": "Opted out from all SMS", + "act::ros-all": "Opted in to all SMS", + "act::ss-ab": "SMS subscription abuse", + "act::scr": "SMS consent requested", + "act::scf": "SMS consent failed", + + "act::sph": "Sent push", + "act::dph": "Delivered push", + "act::cph": "Clicked push", + "act::iph": "Invalid push", + "act::oiip-all": "Opted in to all iOS push", + "act::ooip-all": "Opted out of all iOS push", + "act::oiip-a": "Opted in to iOS push audience", + "act::oips-a": "Opted out of iOS push audience", + "act::oigp-all": "Opted in to all Android push", + "act::oogp-all": "Opted out of all Android push", + "act::oigp-a": "Opted out of Android push audience", + "act::oogs-a": "Opted in to Android push audience", + "act::oiwp-all": "Opted in to all web push", + "act::oowp-all": "Opted out of all web push", + "act::oiwp-a": "Opted in to web push audience", + "act::oows-a": "Opted out of to web push audience", + "act::iws-ab": "Web push subscription abuse", + + "act::ws": "Website session", + "act::us": "User session", + + "act::enter-audience": "Entered audience", + "act::leave-audience": "Left audience", + "act::ta": "Tag added", + "act::tr": "Tag removed", + "act::u-a": "Unsubscribe from audience", + "act::s-a": "Subscribe to audience", + "act::u-all": "Un subscribe from all email", + "act::s-all": "Resubscribe globally", + "act::s-ab": "Subscription abuse", + + "act::ep": "Entered playbook", + "act::lp": "Left playbook", + "act::spa": "Successful playbook action", + "act::fpa": "Failed playbook action", + + "act::ej": "Entered journey", + "act::lj": "Left journey", + "act::sja": "Successful journey action", + "act::fja": "Failed journey action", + + "act::cw": "Clicked widget", + "act::sw": "Shown widget", + "act::dw": "Dismissed widget", + "act::rw": "Reacted to widget", + "act::swf": "Submitted widget form", + "act::rws": "Responded to widget survey", + "act::wwv": "Watched widget video", + "act::sww": "Spun widget wheel", + + "act::cop": "Conversation opened", + "act::cro": "Conversation re-opened", + "act::cas": "Conversation assigned", + "act::clc": "Conversation closed", + "act::csn": "Conversation snoozed", + "act::crt": "Conversation rated", + "act::cms": "Conversation marked as spam", + "act::cvs": "Conversation voice call started", + "act::cve": "Conversation voice call ended", + "act::ctg": "Conversation tagged", + "act::cut": "Conversation un-tagged" +} diff --git a/src/v0/sources/ortto/mapping.json b/src/v0/sources/ortto/mapping.json new file mode 100644 index 0000000000..30ac8e153c --- /dev/null +++ b/src/v0/sources/ortto/mapping.json @@ -0,0 +1,38 @@ +[ + { + "sourceKeys": "contact.email", + "destKeys": "context.traits.email" + }, + { + "sourceKeys": "contact.external_id", + "destKeys": "userId" + }, + { + "sourceKeys": "contact.country.name", + "destKeys": "context.traits.address.country" + }, + { + "sourceKeys": "contact.city.name", + "destKeys": "context.traits.address.city" + }, + { + "sourceKeys": "contact.postal", + "destKeys": "context.traits.address.postalCode" + }, + { + "sourceKeys": "id", + "destKeys": "messageId" + }, + { + "sourceKeys": "time", + "destKeys": "originalTimestamp" + }, + { + "sourceKeys": "contact.first_name", + "destKeys": "context.traits.firstName" + }, + { + "sourceKeys": "contact.last_name", + "destKeys": "context.traits.lastName" + } +] diff --git a/src/v0/sources/ortto/transform.js b/src/v0/sources/ortto/transform.js new file mode 100644 index 0000000000..b40163f567 --- /dev/null +++ b/src/v0/sources/ortto/transform.js @@ -0,0 +1,114 @@ +const path = require('path'); +const fs = require('fs'); +const { flattenJson, removeUndefinedAndNullValues, generateUUID } = require('../../util'); +const Message = require('../message'); +const eventMapping = require('./event_mapping.json'); +const { JSON_MIME_TYPE } = require('../../util/constant'); + +// import mapping json using JSON.parse to preserve object key order +const mapping = JSON.parse(fs.readFileSync(path.resolve(__dirname, './mapping.json'), 'utf-8')); + +function settingProperties(event, message) { + const messageReplica = message; + + // flattening the event and assigning it to properties + messageReplica.properties = removeUndefinedAndNullValues(flattenJson(event)); + + // fields that are already mapped + const excludeFields = [ + 'contact.email', + 'contact.contact_id', + 'id', + 'time', + 'activity.field_id', + 'contact.external_id', + 'contact.country.name', + 'contact.city.name', + 'contact.postal', + 'contact.first_name', + 'contact.last_name', + 'contact.birthday.day', + 'contact.birthday.month', + 'contact.birthday.year', + 'contact.phone_number.c', + 'contact.phone_number', + 'contact.phone_number.n', + ]; + + // deleting already mapped fields + excludeFields.forEach((field) => { + delete messageReplica.properties[field]; + }); + + return message; +} + +function process(event) { + let message = new Message(`ortto`); + + // Here, we are checking for the test event to discard them + if (event.activity?.field_id === 'act::test_webhook') { + return { + outputToSource: { + body: Buffer.from(JSON.stringify(event)).toString('base64'), + contentType: JSON_MIME_TYPE, + }, + statusCode: 200, + }; + } + + // we are setting event type as track always + message.setEventType('track'); + + message.setPropertiesV2(event, mapping); + + // setting anonymousId + if (!message.userId) { + message.anonymousId = generateUUID(); + } + + if (event.contact?.birthday) { + const month = + event.contact.birthday?.month < 10 + ? `0${event.contact.birthday?.month}` + : event.contact.birthday?.month; + const day = + event.contact.birthday?.day < 10 + ? `0${event.contact.birthday?.day}` + : event.contact.birthday?.day; + message.context.traits.birthday = `${event.contact.birthday?.year}-${month}-${day}`; + } + + if (event.contact?.phone_number) { + message.context.traits.phone = `${event.contact.phone_number?.c}${event.contact.phone_number?.n}`; + } + + // Updating timestamp to acceptable timestamp format ["2023-10-10T06:24:19.103820974Z" -> "2023-10-10T06:24:19.000Z"] + if (message.originalTimestamp) { + const date = `${Math.floor(new Date(message.originalTimestamp).getTime() / 1000)}`; + message.originalTimestamp = new Date(date * 1000).toISOString(); + } + + // setting event Name + message.setEventName(eventMapping[event.activity.field_id]); + + if (!message.event) { + message.event = 'custom event triggered'; + } + + // setting up ortto contact.contact_id to externalId + if (event.contact?.contact_id) { + message.context.externalId = [ + { + type: 'orttoPersonId', + id: event.contact.contact_id, + }, + ]; + } + + message = settingProperties(event, message); + + return message; +} + +module.exports = { process }; diff --git a/src/v0/sources/shopify/config.js b/src/v0/sources/shopify/config.js index d8593ce79b..b8b3cde284 100644 --- a/src/v0/sources/shopify/config.js +++ b/src/v0/sources/shopify/config.js @@ -119,5 +119,5 @@ module.exports = { SHOPIFY_TRACK_MAP, useRedisDatabase, SHOPIFY_ADMIN_ONLY_EVENTS, - maxTimeToIdentifyRSGeneratedCall + maxTimeToIdentifyRSGeneratedCall, }; diff --git a/src/v0/sources/shopify/shopify_redis.util.test.js b/src/v0/sources/shopify/shopify_redis.util.test.js index 49437551c2..db596e1dfb 100644 --- a/src/v0/sources/shopify/shopify_redis.util.test.js +++ b/src/v0/sources/shopify/shopify_redis.util.test.js @@ -1,274 +1,285 @@ const { getAnonymousIdAndSessionId, checkAndUpdateCartItems } = require('./util'); jest.mock('ioredis', () => require('../../../../test/__mocks__/redis')); describe('Shopify Utils Test', () => { + describe('Check for valid cart update event test cases', () => { + it('Event containing token and nothing is retreived from redis and less than req. time difference between created_at and uadated_at', async () => { + const input = { + query_parameters: { + topic: ['carts_update'], + }, + id: 'cartTokenTest1', + line_items: [], + note: null, + updated_at: '2023-02-10T12:05:07.251Z', + created_at: '2023-02-10T12:05:04.402Z', + }; + const expectedOutput = false; + const output = await checkAndUpdateCartItems(input); + expect(output).toEqual(expectedOutput); + }); + it('Event containing token and nothing is retreived from redis', async () => { + const input = { + token: 'token_not_in_redis', + line_items: [ + { + prod_id: 'prod_1', + quantity: 1, + }, + ], + }; + const expectedOutput = true; + const output = await checkAndUpdateCartItems(input); + expect(output).toEqual(expectedOutput); + }); - describe('Check for valid cart update event test cases', () => { - it('Event containing token and nothing is retreived from redis and less than req. time difference between created_at and uadated_at', async () => { - const input = { - "query_parameters": { - "topic": [ - "carts_update" - ] - }, - "id": "cartTokenTest1", - "line_items": [], - "note": null, - "updated_at": "2023-02-10T12:05:07.251Z", - "created_at": "2023-02-10T12:05:04.402Z" - }; - const expectedOutput = false; - const output = await checkAndUpdateCartItems(input); - expect(output).toEqual(expectedOutput); - }); - it('Event containing token and nothing is retreived from redis', async () => { - const input = { - token: 'token_not_in_redis', - line_items: [ - { - prod_id: 'prod_1', - quantity: 1, - }, - ], - }; - const expectedOutput = true; - const output = await checkAndUpdateCartItems(input); - expect(output).toEqual(expectedOutput); - }); - - it('Event contain id for cart_update event and isValid', async () => { - const input = { - id: 'shopify_test2', - line_items: [ - { - prod_id: 'prod_1', - quantity: 1, - }, - ], - }; + it('Event contain id for cart_update event and isValid', async () => { + const input = { + id: 'shopify_test2', + line_items: [ + { + prod_id: 'prod_1', + quantity: 1, + }, + ], + }; - const expectedOutput = true; - const output = await checkAndUpdateCartItems(input); - expect(output).toEqual(expectedOutput); - }); + const expectedOutput = true; + const output = await checkAndUpdateCartItems(input); + expect(output).toEqual(expectedOutput); + }); - it('Event contain id for cart_update event and isInValid', async () => { - const input = { - id: 'shopify_test_duplicate_cart', - line_items: [ - { - prod_id: 'prod_1', - quantity: 1, - }, - ], - }; + it('Event contain id for cart_update event and isInValid', async () => { + const input = { + id: 'shopify_test_duplicate_cart', + line_items: [ + { + prod_id: 'prod_1', + quantity: 1, + }, + ], + }; - const expectedOutput = false; - const output = await checkAndUpdateCartItems(input); - expect(output).toEqual(expectedOutput); - }); + const expectedOutput = false; + const output = await checkAndUpdateCartItems(input); + expect(output).toEqual(expectedOutput); + }); - it('Valid Cart Event but not able to set data due to redis error', async () => { - const input = { - id: 'shopify_test_set_redis_error', - line_items: [ - { - prod_id: 'prod_1', - quantity: 1, - }, - ], - }; + it('Valid Cart Event but not able to set data due to redis error', async () => { + const input = { + id: 'shopify_test_set_redis_error', + line_items: [ + { + prod_id: 'prod_1', + quantity: 1, + }, + ], + }; - const expectedOutput = true; - const output = await checkAndUpdateCartItems(input); - expect(output).toEqual(expectedOutput); - }); + const expectedOutput = true; + const output = await checkAndUpdateCartItems(input); + expect(output).toEqual(expectedOutput); }); + }); - describe(' Test Cases -> set AnonymousId and sessionId without using Redis', () => { - it('Order Updated -> Properties containing cartToken', async () => { - const input = { - event: 'Order Updated', - properties: { - cart_token: '123', - }, - }; - const expectedOutput = { "anonymousId": "b9b6607d-6974-594f-8e99-ac3de71c4d89", "sessionId": undefined }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + describe(' Test Cases -> set AnonymousId and sessionId without using Redis', () => { + it('Order Updated -> Properties containing cartToken', async () => { + const input = { + event: 'Order Updated', + properties: { + cart_token: '123', + }, + }; + const expectedOutput = { + anonymousId: 'b9b6607d-6974-594f-8e99-ac3de71c4d89', + sessionId: undefined, + }; + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('Cart Update -> Properties contain `id` ', async () => { - const input = { - event: 'Cart Update', - properties: { - id: '123', - }, - }; + it('Cart Update -> Properties contain `id` ', async () => { + const input = { + event: 'Cart Update', + properties: { + id: '123', + }, + }; - const expectedOutput = { "anonymousId": "b9b6607d-6974-594f-8e99-ac3de71c4d89", "sessionId": undefined }; - const output = await getAnonymousIdAndSessionId(input, {}, null); + const expectedOutput = { + anonymousId: 'b9b6607d-6974-594f-8e99-ac3de71c4d89', + sessionId: undefined, + }; + const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + expect(output).toEqual(expectedOutput); + }); - it('Customer event -> random AnonymousId', async () => { - const input = { - event: 'Customer Enabled', - properties: {}, - }; + it('Customer event -> random AnonymousId', async () => { + const input = { + event: 'Customer Enabled', + properties: {}, + }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(output); // since it will be random - }); + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(output); // since it will be random + }); - it('Order Delete -> No anonymousId is there', async () => { - const input = { - event: 'Order Deleted', - properties: { - order_id: 'Order_ID', - }, - }; - const expectedOutput = { "anonymousId": undefined, "sessionId": undefined }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + it('Order Delete -> No anonymousId is there', async () => { + const input = { + event: 'Order Deleted', + properties: { + order_id: 'Order_ID', + }, + }; + const expectedOutput = { anonymousId: undefined, sessionId: undefined }; + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('Checkout Create -> rudderAnonymousId and rudderSessionId present in note_attributes', async () => { - const input = { - event: 'Checkout Create', - properties: { - cart_token: 'CART_TOKEN', - note_attributes: [ - { - "name": "rudderAnonymousId", - "value": "RUDDER_ANONYMOUSID" - }, - { - "name": "rudderSessionId", - "value": "RUDDER_SESSIONID" - }, - { - "name": "rudderUpdatedAt", - "value": "TIMESTAMP" - } - ], - }, - }; - const expectedOutput = { "anonymousId": "RUDDER_ANONYMOUSID", "sessionId": "RUDDER_SESSIONID" }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + it('Checkout Create -> rudderAnonymousId and rudderSessionId present in note_attributes', async () => { + const input = { + event: 'Checkout Create', + properties: { + cart_token: 'CART_TOKEN', + note_attributes: [ + { + name: 'rudderAnonymousId', + value: 'RUDDER_ANONYMOUSID', + }, + { + name: 'rudderSessionId', + value: 'RUDDER_SESSIONID', + }, + { + name: 'rudderUpdatedAt', + value: 'TIMESTAMP', + }, + ], + }, + }; + const expectedOutput = { anonymousId: 'RUDDER_ANONYMOUSID', sessionId: 'RUDDER_SESSIONID' }; + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); }); + }); - describe('set AnonymousId and sesssionId with Redis Test Cases', () => { - // Doing the following to enable redis mid test case file execution - process.env.USE_REDIS_DB = true; - jest.resetModules(); - const { getAnonymousIdAndSessionId } = require('./util'); - it('Properties containing cartToken but failed due redisError', async () => { - const input = { - event: 'Order Paid', - properties: { - cart_token: 'shopify_test2', - }, - }; - const expectedOutput = { "anonymousId": "bcaf0473-fb11-562f-80a1-c83a35f053bc", "sessionId": undefined } // cartToken hashed - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + describe('set AnonymousId and sesssionId with Redis Test Cases', () => { + // Doing the following to enable redis mid test case file execution + process.env.USE_REDIS_DB = true; + jest.resetModules(); + const { getAnonymousIdAndSessionId } = require('./util'); + it('Properties containing cartToken but failed due redisError', async () => { + const input = { + event: 'Order Paid', + properties: { + cart_token: 'shopify_test2', + }, + }; + const expectedOutput = { + anonymousId: 'bcaf0473-fb11-562f-80a1-c83a35f053bc', + sessionId: undefined, + }; // cartToken hashed + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('Order Paid- > Properties containing cartToken and fetched anonymousId and sessionId successfully', async () => { - const input = { - event: 'Order Paid', - properties: { - cart_token: 'shopify_test2', - note_attributes: [ - { - name: "rudderUpdatedAt", - value: "RUDDER_UPDTD_AT" - } - ], - }, - }; - const expectedOutput = { "anonymousId": "anon_shopify_test2", "sessionId": "session_id_2" }; // fetched succesfully from redis + it('Order Paid- > Properties containing cartToken and fetched anonymousId and sessionId successfully', async () => { + const input = { + event: 'Order Paid', + properties: { + cart_token: 'shopify_test2', + note_attributes: [ + { + name: 'rudderUpdatedAt', + value: 'RUDDER_UPDTD_AT', + }, + ], + }, + }; + const expectedOutput = { anonymousId: 'anon_shopify_test2', sessionId: 'session_id_2' }; // fetched succesfully from redis - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('Cart Update -> Properties contain id and fetched anonymousId successfully', async () => { - const input = { - event: 'Cart Update', - properties: { - id: 'shopify_test_only_anon_id', - }, - }; - const expectedOutput = { "anonymousId": "anon_shopify_test_only_anon_id", "sessionId": undefined }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + it('Cart Update -> Properties contain id and fetched anonymousId successfully', async () => { + const input = { + event: 'Cart Update', + properties: { + id: 'shopify_test_only_anon_id', + }, + }; + const expectedOutput = { + anonymousId: 'anon_shopify_test_only_anon_id', + sessionId: undefined, + }; + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('No mapping not present in DB for given cartToken', async () => { - const input = { - event: 'Cart Update', - properties: { - id: 'unstored_id', - }, - }; + it('No mapping not present in DB for given cartToken', async () => { + const input = { + event: 'Cart Update', + properties: { + id: 'unstored_id', + }, + }; - const expectedOutput = { "anonymousId": "281a3e25-e603-5870-9cda-281c22940970", "sessionId": undefined }; + const expectedOutput = { + anonymousId: '281a3e25-e603-5870-9cda-281c22940970', + sessionId: undefined, + }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('No cartToken for SHOPIFY_ADMIN_ONLY_EVENTS', async () => { - const input = { - event: 'Fulfillments Update', - properties: { - id: 'unstored_id', - }, - }; - const expectedOutput = { "anonymousId": undefined, "sessionId": undefined }; + it('No cartToken for SHOPIFY_ADMIN_ONLY_EVENTS', async () => { + const input = { + event: 'Fulfillments Update', + properties: { + id: 'unstored_id', + }, + }; + const expectedOutput = { anonymousId: undefined, sessionId: undefined }; - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect(output).toEqual(expectedOutput); + }); - it('No cartToken for Order paid', async () => { - const input = { - event: 'Order Paid', - properties: { - cart_token: 'shopify_test2', - }, - }; - const expectedOutput = 'RANDOM_ANONYMOUS_ID'; // fetched succesfully from redis + it('No cartToken for Order paid', async () => { + const input = { + event: 'Order Paid', + properties: { + cart_token: 'shopify_test2', + }, + }; + const expectedOutput = 'RANDOM_ANONYMOUS_ID'; // fetched succesfully from redis - const output = await getAnonymousIdAndSessionId(input, {}, null); - expect('RANDOM_ANONYMOUS_ID').toEqual(expectedOutput); - }); + const output = await getAnonymousIdAndSessionId(input, {}, null); + expect('RANDOM_ANONYMOUS_ID').toEqual(expectedOutput); + }); - it('Only anonymousId fetched from note_attributes and no cartToken', async () => { - const input = { - event: 'Order Paid', - properties: { - note_attributes: [ - { - name: "rudderAnonymousId", - value: "RUDDER_ANON_ID" - }, - { - name: "rudderUpdatedAt", - value: "RUDDER_UPDTD_AT" - } - ], - }, - }; - const expectedOutput = { "anonymousId": "RUDDER_ANON_ID", "sessionId": null }; // fetched succesfully from redis - const output = await getAnonymousIdAndSessionId(input, {}, null); + it('Only anonymousId fetched from note_attributes and no cartToken', async () => { + const input = { + event: 'Order Paid', + properties: { + note_attributes: [ + { + name: 'rudderAnonymousId', + value: 'RUDDER_ANON_ID', + }, + { + name: 'rudderUpdatedAt', + value: 'RUDDER_UPDTD_AT', + }, + ], + }, + }; + const expectedOutput = { anonymousId: 'RUDDER_ANON_ID', sessionId: null }; // fetched succesfully from redis + const output = await getAnonymousIdAndSessionId(input, {}, null); - expect(output).toEqual(expectedOutput); - }); + expect(output).toEqual(expectedOutput); }); - + }); }); diff --git a/src/v0/sources/shopify/transform.js b/src/v0/sources/shopify/transform.js index 7bbb928fd8..fd763eeb46 100644 --- a/src/v0/sources/shopify/transform.js +++ b/src/v0/sources/shopify/transform.js @@ -173,7 +173,11 @@ const processEvent = async (inputEvent, metricMetadata) => { } } if (message.type !== EventType.IDENTIFY) { - const { anonymousId, sessionId } = await getAnonymousIdAndSessionId(message, metricMetadata, redisData); + const { anonymousId, sessionId } = await getAnonymousIdAndSessionId( + message, + metricMetadata, + redisData, + ); if (isDefinedAndNotNull(anonymousId)) { message.setProperty('anonymousId', anonymousId); } else if (!message.userId) { @@ -198,7 +202,8 @@ const processEvent = async (inputEvent, metricMetadata) => { message = removeUndefinedAndNullValues(message); return message; }; -const isIdentifierEvent = (event) => ['rudderIdentifier', 'rudderSessionIdentifier'].includes(event?.event); +const isIdentifierEvent = (event) => + ['rudderIdentifier', 'rudderSessionIdentifier'].includes(event?.event); const processIdentifierEvent = async (event, metricMetadata) => { if (useRedisDatabase) { let value; @@ -241,7 +246,6 @@ const processIdentifierEvent = async (event, metricMetadata) => { ...metricMetadata, }); } - } const result = { outputToSource: { diff --git a/src/v0/util/constant.js b/src/v0/util/constant.js index 50f1b76a74..9996f1ea7c 100644 --- a/src/v0/util/constant.js +++ b/src/v0/util/constant.js @@ -11,6 +11,7 @@ const API_CALL = 'api_call_count'; const JSON_MIME_TYPE = 'application/json'; const FEATURE_FILTER_CODE = 'filter-code'; +const FEATURE_GZIP_SUPPORT = 'gzip-support'; const HTTP_STATUS_CODES = { // 1xx Informational @@ -89,4 +90,5 @@ module.exports = { HTTP_STATUS_CODES, USER_LEAD_CACHE_TTL, FEATURE_FILTER_CODE, + FEATURE_GZIP_SUPPORT, }; diff --git a/src/v0/util/facebookUtils/index.js b/src/v0/util/facebookUtils/index.js new file mode 100644 index 0000000000..d39d1c4ce9 --- /dev/null +++ b/src/v0/util/facebookUtils/index.js @@ -0,0 +1,301 @@ +const sha256 = require('sha256'); +const { + isObject, + getIntegrationsObj, + getHashFromArray, + constructPayload, + defaultRequestConfig, + defaultPostRequestConfig, + getFieldValueFromMessage, + formatTimeStamp, +} = require('../index'); +const { InstrumentationError, TransformationError } = require('../errorTypes'); + +/** This function transforms the payloads according to the config settings and adds, removes or hashes pii data. + @param message --> the rudder payload + + { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { Fb: { app_id: 'RudderFbApp' } }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi' + }, + network: { carrier: 'Banglalink' }, + os: { name: 'android', version: '8.1.0' }, + screen: { height: '100', density: 50 }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1' + } + }, + event: 'spin_result', + integrations: { + All: true, + FacebookPixel: { + dataProcessingOptions: [Array], + fbc: 'fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890', + fbp: 'fb.1.1554763741205.234567890', + fb_login_id: 'fb_id', + lead_id: 'lead_id' + } + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { revenue: 400, additional_bet_index: 0 }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track' + } + + @param customData --> properties + { revenue: 400, additional_bet_index: 0 } + + @param blacklistPiiProperties --> + [ { blacklistPiiProperties: 'phone', blacklistPiiHash: true } ] // hashes the phone property + + @param whitelistPiiProperties --> + [ { whitelistPiiProperties: 'email' } ] // sets email + + + @param integrationsObj --> + { hashed: true } + + */ + +const transformedPayloadData = ( + message, + customData, + blacklistPiiProperties, + whitelistPiiProperties, + integrationsObj, +) => { + const defaultPiiProperties = [ + 'email', + 'firstName', + 'lastName', + 'firstname', + 'lastname', + 'first_name', + 'last_name', + 'gender', + 'city', + 'country', + 'phone', + 'state', + 'zip', + 'postalCode', + 'birthday', + ]; + const clonedCustomData = { ...customData }; + const finalBlacklistPiiProperties = blacklistPiiProperties || []; + const finalWhitelistPiiProperties = whitelistPiiProperties || []; + const customBlackListedPiiProperties = {}; + + // create list of whitelisted properties + const customWhiteListedProperties = finalWhitelistPiiProperties.map( + (propObject) => propObject.whitelistPiiProperties, + ); + + // create map of blacklisted properties + finalBlacklistPiiProperties.forEach((property) => { + const singularConfigInstance = property; + customBlackListedPiiProperties[singularConfigInstance.blacklistPiiProperties] = + singularConfigInstance.blacklistPiiHash; + }); + + // remove properties which are default pii properties and not whitelisted + Object.keys(clonedCustomData).forEach((eventProp) => { + const isDefaultPiiProperty = defaultPiiProperties.includes(eventProp); + const isProperyWhiteListed = customWhiteListedProperties.includes(eventProp); + + if (Object.hasOwn(customBlackListedPiiProperties, eventProp)) { + if (customBlackListedPiiProperties[eventProp]) { + // if customBlackListedPiiProperty is marked to be hashed from UI + clonedCustomData[eventProp] = integrationsObj?.hashed + ? String(message.properties[eventProp]) + : sha256(String(message.properties[eventProp])); + } else if (isDefaultPiiProperty && !isProperyWhiteListed) { + delete clonedCustomData[eventProp]; + } + } else if (isDefaultPiiProperty && !isProperyWhiteListed) { + delete clonedCustomData[eventProp]; + } + }); + + return clonedCustomData; +}; + +/** + * + * @param {*} message Rudder Payload + * @param {*} defaultValue product / product_group + * @param {*} categoryToContent example: [ { from: 'clothing', to: 'product' } ] + * @param {*} destinationName destination name + * + * We will be mapping properties.category to user provided content else taking the default value as per ecomm spec + * If category is clothing it will be set to ["product"] + * @return Content Type array as defined in: + * - https://developers.facebook.com/docs/facebook-pixel/reference/#object-properties + */ +const getContentType = (message, defaultValue, categoryToContent, destinationName) => { + const { properties } = message; + const integrationsObj = getIntegrationsObj(message, destinationName || 'fb_pixel'); + + if (integrationsObj?.contentType) { + return integrationsObj.contentType; + } + + let { category } = properties; + if (!category) { + const { products } = properties; + if (products && products.length > 0 && Array.isArray(products) && isObject(products[0])) { + category = products[0].category; + } + } + + if (Array.isArray(categoryToContent) && category) { + const categoryToContentHash = getHashFromArray(categoryToContent, 'from', 'to', false); + if (categoryToContentHash[category]) { + return categoryToContentHash[category]; + } + } + + return defaultValue; +}; + +/** + * This method gets content category with proper error-handling + * + * @param {*} category + * @returns The content category as a string + */ +const getContentCategory = (category) => { + let contentCategory = category; + if (Array.isArray(contentCategory)) { + contentCategory = contentCategory.map(String).join(','); + } + if ( + contentCategory && + typeof contentCategory !== 'string' && + typeof contentCategory !== 'object' + ) { + contentCategory = String(contentCategory); + } + if ( + contentCategory && + typeof contentCategory !== 'string' && + !Array.isArray(contentCategory) && + typeof contentCategory === 'object' + ) { + throw new InstrumentationError("'properties.category' must be either be a string or an array"); + } + return contentCategory; +}; + +/** + * + * @param {*} message + * @returns string which is fbc parameter + * + * version : "fb" (default) + * + * subdomainIndex : 1 ( recommended by facebook, as well as our JS SDK sets cookies on the main domain, i.e "facebook.com") + * + * creationTime : mapped to originalTimestamp converted in miliseconds + * + * fbclid : deduced query paramter from context.page.url + * + * ref: https://developers.facebook.com/docs/marketing-api/conversions-api/parameters/fbp-and-fbc#fbc + */ +const deduceFbcParam = (message) => { + const url = message.context?.page?.url; + if (!url) { + return undefined; + } + let parseUrl; + try { + parseUrl = new URL(url); + } catch { + return undefined; + } + const paramsList = new URLSearchParams(parseUrl.search); + const fbclid = paramsList.get('fbclid'); + + if (!fbclid) { + return undefined; + } + const creationTime = getFieldValueFromMessage(message, 'timestamp'); + return `fb.1.${formatTimeStamp(creationTime)}.${fbclid}`; +}; + +const fetchUserData = (message, Config, mappingJson, destinationName) => { + const integrationsObj = getIntegrationsObj(message, destinationName); + const userData = constructPayload(message, mappingJson, destinationName); + const { removeExternalId } = Config; + if (removeExternalId) { + delete userData.external_id; + } + + if (userData) { + const split = userData.name?.split(' '); + if (split && split.length === 2) { + const hashValue = (value) => (integrationsObj?.hashed ? value : sha256(value)); + userData.fn = hashValue(split[0]); + userData.ln = hashValue(split[1]); + } + delete userData.name; + userData.fbc = userData.fbc || deduceFbcParam(message); + } + + return userData; +}; + +const formingFinalResponse = ( + userData, + commonData, + customData, + endpoint, + testDestination, + testEventCode, + appData, +) => { + if (userData && commonData) { + const response = defaultRequestConfig(); + response.endpoint = endpoint; + response.method = defaultPostRequestConfig.requestMethod; + const jsonData = { + user_data: userData, + ...commonData, + }; + if (appData && Object.keys(appData).length > 0) { + jsonData.app_data = appData; + } + if (customData && Object.keys(customData).length > 0) { + jsonData.custom_data = customData; + } + const jsonStringify = JSON.stringify(jsonData); + const payload = { + data: [jsonStringify], + }; + + // Ref: https://developers.facebook.com/docs/marketing-api/conversions-api/using-the-api/ + // Section: Test Events Tool + if (testDestination) { + payload.test_event_code = testEventCode; + } + response.body.FORM = payload; + return response; + } + // fail-safety for developer error + throw new TransformationError('Payload could not be constructed'); +}; + +module.exports = { + getContentType, + getContentCategory, + transformedPayloadData, + formingFinalResponse, + fetchUserData, +}; diff --git a/src/v0/destinations/facebook_pixel/utils.test.js b/src/v0/util/facebookUtils/index.test.js similarity index 98% rename from src/v0/destinations/facebook_pixel/utils.test.js rename to src/v0/util/facebookUtils/index.test.js index acd14ad2a8..98e4ccec40 100644 --- a/src/v0/destinations/facebook_pixel/utils.test.js +++ b/src/v0/util/facebookUtils/index.test.js @@ -1,4 +1,4 @@ -const { transformedPayloadData } = require('../../../../src/v0/destinations/facebook_pixel/utils'); +const { transformedPayloadData } = require('./index'); const sha256 = require('sha256'); describe('transformedPayloadData_function', () => { diff --git a/src/v0/util/facebookUtils/networkHandler.js b/src/v0/util/facebookUtils/networkHandler.js new file mode 100644 index 0000000000..d53d0f76f9 --- /dev/null +++ b/src/v0/util/facebookUtils/networkHandler.js @@ -0,0 +1,225 @@ +const { isEmpty } = require('lodash'); +const get = require('get-value'); +const { + processAxiosResponse, + getDynamicErrorType, +} = require('../../../adapters/utils/networkUtils'); +const { prepareProxyRequest, proxyRequest } = require('../../../adapters/network'); +const { NetworkError } = require('../errorTypes'); +const tags = require('../tags'); +const { ErrorDetailsExtractorBuilder } = require('../../../util/error-extractor'); + +/** + * Only under below mentioned scenario(s), add the errorCodes, subCodes etc,. to this map + * + * The actual API reference doc to which events from Rudderstack are being sent + * https://developers.facebook.com/docs/marketing-api/reference/ads-pixel/events/v13.0 + * + * The documents referred while formulating the error responses + * 1. https://developers.facebook.com/docs/graph-api/guides/error-handling/ + * - This seems like a generic document that contains errors possible for Graph API + * 2. https://developers.facebook.com/docs/marketing-api/error-reference/ + * - The doc seems to be more related to Marketing API + * 3. https://developers.facebook.com/docs/marketing-api/error-reference/ +{ + // A scenario where in we have to know the error with code and subcode, we can conclude that + // this error will have a particular status, statTags + code1: { + subCode1: { + status: , + // Only tags that are unique to this error needs to be provided + statTags: {}, + messageDetails: { + message: "", + field: + }, + + } + } +} + */ +const errorDetailsMap = { + 100: { + // This error talks about event being sent after seven days or so + 2804003: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + 2804001: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + 2804007: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + 2804016: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + 2804017: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + 2804019: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + 2804048: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessageField('error_user_title') + .build(), + // This error-subcode indicates that the business access token expired or is invalid or sufficient permissions are not provided + // since there is involvement of changes required on dashboard to make event successful + // for now, we are aborting this error-subCode combination + 33: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessage( + "Object with ID 'PIXEL_ID' does not exist, cannot be loaded due to missing permissions, or does not support this operation", + ) + .build(), + default: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessage('Invalid Parameter') + .build(), + }, + 1: { + // An unknown error occurred. + // This error may occur if you set level to adset but the correct value should be campaign + 99: new ErrorDetailsExtractorBuilder() + .setStatus(500) + .setMessage( + 'This error may occur if you set level to adset but the correct value should be campaign', + ) + .build(), + default: new ErrorDetailsExtractorBuilder() + .setStatus(500) + .setMessage('An unknown error occurred') + .build(), + }, + 190: { + 460: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessage( + 'The session has been invalidated because the user changed their password or Facebook has changed the session for security reasons', + ) + .build(), + default: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessage('Invalid OAuth 2.0 access token') + .build(), + }, + 3: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(400) + .setMessage('Capability or permissions issue.') + .build(), + }, + 2: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(500) + .setMessage('Temporary issue due to downtime.') + .build(), + }, + 341: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(500) + .setMessage('Application limit reached: Temporary issue due to downtime or throttling') + .build(), + }, + 368: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(500) + .setMessage('Temporarily blocked for policies violations.') + .build(), + }, + 5000: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(500) + .setMessage('Unknown Error Code') + .build(), + }, + 4: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(429) + .setMessage('API Too Many Calls') + .build(), + }, + 17: { + default: new ErrorDetailsExtractorBuilder() + .setStatus(429) + .setMessage('API User Too Many Calls') + .build(), + }, +}; + +const getErrorDetailsFromErrorMap = (error) => { + const { code, error_subcode: subCode } = error; + let errDetails; + if (!isEmpty(errorDetailsMap[code])) { + errDetails = errorDetailsMap[code][subCode] || errorDetailsMap[code]?.default; + } + return errDetails; +}; + +const getStatus = (error) => { + const errorDetail = getErrorDetailsFromErrorMap(error); + let errorStatus = 500; + const isErrorDetailEmpty = isEmpty(errorDetail); + if (isErrorDetailEmpty) { + // Unhandled error response + return { + status: errorStatus, + tags: { [tags.TAG_NAMES.META]: tags.METADATA.UNHANDLED_STATUS_CODE }, + }; + } + errorStatus = errorDetail.status; + + let errorMessage = errorDetail?.messageDetails?.message; + if (errorDetail?.messageDetails?.field) { + errorMessage = get(error, errorDetail?.messageDetails?.field); + } + + return { status: errorStatus, errorMessage }; +}; + +const errorResponseHandler = (destResponse) => { + const { response } = destResponse; + if (!response.error) { + // successful response from facebook pixel api + return; + } + const { error } = response; + const { status, errorMessage, tags: errorStatTags } = getStatus(error); + throw new NetworkError( + `${errorMessage || error.message || 'Unknown failure during response transformation'}`, + status, + { + ...errorStatTags, + [tags.TAG_NAMES.ERROR_TYPE]: getDynamicErrorType(status), + }, + { ...response, status: destResponse.status }, + ); +}; + +const destResponseHandler = (destinationResponse) => { + errorResponseHandler(destinationResponse); + return { + destinationResponse: destinationResponse.response, + message: 'Request Processed Successfully', + status: destinationResponse.status, + }; +}; + +function networkHandler() { + // The order of execution also happens in this way + this.prepareProxy = prepareProxyRequest; + this.proxy = proxyRequest; + this.processAxiosResponse = processAxiosResponse; + this.responseHandler = destResponseHandler; +} + +module.exports = { + networkHandler, + errorResponseHandler, +}; diff --git a/src/v0/util/index.js b/src/v0/util/index.js index 7a31b95a63..cd9bd82efd 100644 --- a/src/v0/util/index.js +++ b/src/v0/util/index.js @@ -32,7 +32,8 @@ const { REFRESH_TOKEN, AUTH_STATUS_INACTIVE, } = require('../../adapters/networkhandler/authConstants'); -const { FEATURE_FILTER_CODE } = require('./constant'); +const { FEATURE_FILTER_CODE, FEATURE_GZIP_SUPPORT } = require('./constant'); + // ======================================================================== // INLINERS // ======================================================================== @@ -372,6 +373,9 @@ const hashToSha256 = (value) => sha256(value); // Check what type of gender and convert to f or m const getFbGenderVal = (gender) => { + if (typeof gender !== 'string') { + return null; + } if ( gender.toUpperCase() === 'FEMALE' || gender.toUpperCase() === 'F' || @@ -821,6 +825,13 @@ function formatValues(formattedVal, formattingType, typeFormat, integrationsObj) curFormattedVal = false; } }, + IsArray: () => { + curFormattedVal = formattedVal; + if (!Array.isArray(formattedVal)) { + logger.debug('Array value missing, so dropping it'); + curFormattedVal = undefined; + } + }, trim: () => { if (typeof formattedVal === 'string') { curFormattedVal = formattedVal.trim(); @@ -2040,11 +2051,20 @@ const getAuthErrCategoryFromStCode = (status) => { return ''; }; -const validateEventType = event => { - if(!event || typeof event !== "string"){ - throw new InstrumentationError("Event is a required field and should be a string"); +const validateEventType = (event) => { + if (!event || typeof event !== 'string') { + throw new InstrumentationError('Event is a required field and should be a string'); } -} +}; + +const IsGzipSupported = (reqMetadata = {}) => { + if (reqMetadata && typeof reqMetadata === 'object' && !Array.isArray(reqMetadata)) { + const { features } = reqMetadata; + return !!features?.[FEATURE_GZIP_SUPPORT]; + } + return false; +}; + // ======================================================================== // EXPORTS // ======================================================================== @@ -2151,4 +2171,5 @@ module.exports = { getAuthErrCategoryFromErrDetailsAndStCode, getAuthErrCategoryFromStCode, isNewStatusCodesAccepted, + IsGzipSupported, }; diff --git a/src/warehouse/index.js b/src/warehouse/index.js index 244605613f..c12239c440 100644 --- a/src/warehouse/index.js +++ b/src/warehouse/index.js @@ -197,21 +197,30 @@ function setDataFromColumnMappingAndComputeColumnTypes( */ function setDataFromInputAndComputeColumnTypes( - utils, - eventType, - output, - input, - columnTypes, - options, - completePrefix = '', - completeLevel = 0, - prefix = '', - level = 0, + utils, + eventType, + output, + input, + columnTypes, + options, + completePrefix = '', + completeLevel = 0, + prefix = '', + level = 0, ) { if (!input || !isObject(input)) return; Object.keys(input).forEach((key) => { - const isValidLegacyJSONPath = isValidLegacyJsonPathKey(eventType, `${prefix + key}`, level, options.jsonLegacyPathKeys); - const isValidJSONPath = isValidJsonPathKey(`${completePrefix + key}`, completeLevel, options.jsonPathKeys); + const isValidLegacyJSONPath = isValidLegacyJsonPathKey( + eventType, + `${prefix + key}`, + level, + options.jsonLegacyPathKeys, + ); + const isValidJSONPath = isValidJsonPathKey( + `${completePrefix + key}`, + completeLevel, + options.jsonPathKeys, + ); if (isValidJSONPath || isValidLegacyJSONPath) { if (isBlank(input[key])) { @@ -220,27 +229,27 @@ function setDataFromInputAndComputeColumnTypes( const val = JSON.stringify(input[key]); appendColumnNameAndType( - utils, - eventType, - `${prefix + key}`, - val, - output, - columnTypes, - options, - true, + utils, + eventType, + `${prefix + key}`, + val, + output, + columnTypes, + options, + true, ); } else if (isObject(input[key]) && (options.sourceCategory !== 'cloud' || level < 3)) { setDataFromInputAndComputeColumnTypes( - utils, - eventType, - output, - input[key], - columnTypes, - options, - `${completePrefix + key}_`, - completeLevel + 1, - `${prefix + key}_`, - level + 1, + utils, + eventType, + output, + input[key], + columnTypes, + options, + `${completePrefix + key}_`, + completeLevel + 1, + `${prefix + key}_`, + level + 1, ); } else { let val = input[key]; @@ -252,13 +261,13 @@ function setDataFromInputAndComputeColumnTypes( val = JSON.stringify(val); } appendColumnNameAndType( - utils, - eventType, - `${prefix + key}`, - val, - output, - columnTypes, - options, + utils, + eventType, + `${prefix + key}`, + val, + output, + columnTypes, + options, ); } }); @@ -323,8 +332,8 @@ function storeRudderEvent(utils, message, output, columnTypes, options) { function addJsonKeysToOptions(options) { // Add json key paths from integration options and destination config const jsonPaths = Array.isArray(options.integrationOptions?.jsonPaths) - ? options.integrationOptions.jsonPaths - : []; + ? options.integrationOptions.jsonPaths + : []; if (options.destJsonPaths) { jsonPaths.push(...options.destJsonPaths.split(',')); } @@ -594,7 +603,7 @@ function processWarehouseMessage(message, options) { commonColumnTypes, options, `${eventType + '_context_'}`, - 2, + 2, 'context_', ); @@ -618,7 +627,7 @@ function processWarehouseMessage(message, options) { eventTableColumnTypes, options, `${eventType + '_properties_'}`, - 2, + 2, ); setDataFromColumnMappingAndComputeColumnTypes( utils, @@ -673,7 +682,7 @@ function processWarehouseMessage(message, options) { commonColumnTypes, options, `${eventType + '_context_'}`, - 2, + 2, 'context_', ); setDataFromColumnMappingAndComputeColumnTypes( @@ -749,7 +758,7 @@ function processWarehouseMessage(message, options) { eventTableColumnTypes, options, `${eventType + '_properties_'}`, - 2, + 2, ); setDataFromInputAndComputeColumnTypes( utils, @@ -759,7 +768,7 @@ function processWarehouseMessage(message, options) { eventTableColumnTypes, options, `${eventType + '_userProperties_'}`, - 2, + 2, ); setDataFromColumnMappingAndComputeColumnTypes( utils, @@ -815,7 +824,7 @@ function processWarehouseMessage(message, options) { commonColumnTypes, options, `${eventType + '_userProperties_'}`, - 2, + 2, ); setDataFromInputAndComputeColumnTypes( utils, @@ -825,7 +834,7 @@ function processWarehouseMessage(message, options) { commonColumnTypes, options, `${eventType + '_context_traits_'}`, - 3, + 3, ); setDataFromInputAndComputeColumnTypes( utils, @@ -835,7 +844,7 @@ function processWarehouseMessage(message, options) { commonColumnTypes, options, `${eventType + '_traits_'}`, - 2, + 2, '', ); @@ -848,7 +857,7 @@ function processWarehouseMessage(message, options) { commonColumnTypes, options, `${eventType + '_context_'}`, - 2, + 2, 'context_', ); @@ -954,7 +963,7 @@ function processWarehouseMessage(message, options) { columnTypes, options, `${eventType + '_properties_'}`, - 2, + 2, ); // set rudder properties after user set properties to prevent overwriting setDataFromInputAndComputeColumnTypes( @@ -965,7 +974,7 @@ function processWarehouseMessage(message, options) { columnTypes, options, `${eventType + '_context_'}`, - 2, + 2, 'context_', ); setDataFromColumnMappingAndComputeColumnTypes( @@ -1025,7 +1034,7 @@ function processWarehouseMessage(message, options) { columnTypes, options, `${eventType + '_traits_'}`, - 2, + 2, ); setDataFromInputAndComputeColumnTypes( utils, @@ -1035,7 +1044,7 @@ function processWarehouseMessage(message, options) { columnTypes, options, `${eventType + '_context_'}`, - 2, + 2, 'context_', ); setDataFromColumnMappingAndComputeColumnTypes( @@ -1083,7 +1092,7 @@ function processWarehouseMessage(message, options) { columnTypes, options, `${eventType + '_traits_'}`, - 2, + 2, ); setDataFromInputAndComputeColumnTypes( utils, @@ -1093,7 +1102,7 @@ function processWarehouseMessage(message, options) { columnTypes, options, `${eventType + '_context_'}`, - 2, + 2, 'context_', ); setDataFromColumnMappingAndComputeColumnTypes( diff --git a/src/warehouse/util.js b/src/warehouse/util.js index db81d11cbd..91b49039f1 100644 --- a/src/warehouse/util.js +++ b/src/warehouse/util.js @@ -59,7 +59,15 @@ const keysFromJsonPaths = (jsonPaths) => { const jsonPathKeys = {}; const jsonLegacyPathKeys = {}; - const supportedEventPrefixes = ['track.', 'identify.', 'page.', 'screen.', 'alias.', 'group.', 'extract.']; + const supportedEventPrefixes = [ + 'track.', + 'identify.', + 'page.', + 'screen.', + 'alias.', + 'group.', + 'extract.', + ]; jsonPaths.forEach((jsonPath) => { const trimmedJSONPath = jsonPath.trim(); @@ -71,13 +79,13 @@ const keysFromJsonPaths = (jsonPaths) => { const key = paths.join('_'); const pos = paths.length - 1; - if (supportedEventPrefixes.some(prefix => trimmedJSONPath.startsWith(prefix))) { + if (supportedEventPrefixes.some((prefix) => trimmedJSONPath.startsWith(prefix))) { jsonPathKeys[key] = pos; return; } jsonLegacyPathKeys[key] = pos; }); - return {jsonPathKeys, jsonLegacyPathKeys}; + return { jsonPathKeys, jsonLegacyPathKeys }; }; // https://www.myintervals.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/ diff --git a/test/__mocks__/data/hs/response.json b/test/__mocks__/data/hs/response.json index 721ee64410..e552275466 100644 --- a/test/__mocks__/data/hs/response.json +++ b/test/__mocks__/data/hs/response.json @@ -3,6 +3,18 @@ { "name": "company_size", "type": "string" }, { "name": "date_of_birth", "type": "string" }, { "name": "days_to_close", "type": "number" }, + { + "name": "date_submitted", + "type": "date" + }, + { + "name": "days_create", + "type": "date" + }, + { + "name": "days_closed", + "type": "date" + }, { "name": "degree", "type": "string" }, { "name": "field_of_study", "type": "string" }, { "name": "first_conversion_date", "type": "datetime" }, @@ -192,6 +204,18 @@ { "name": "company_size", "type": "string" }, { "name": "date_of_birth", "type": "string" }, { "name": "days_to_close", "type": "number" }, + { + "name": "date_submitted", + "type": "date" + }, + { + "name": "date_created", + "type": "date" + }, + { + "name": "date_closed", + "type": "date" + }, { "name": "degree", "type": "string" }, { "name": "field_of_study", "type": "string" }, { "name": "first_conversion_date", "type": "datetime" }, diff --git a/test/__tests__/algolia-cdk.test.ts b/test/__tests__/algolia-cdk.test.ts deleted file mode 100644 index 0b6fae6741..0000000000 --- a/test/__tests__/algolia-cdk.test.ts +++ /dev/null @@ -1,59 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { processCdkV2Workflow } from '../../src/cdk/v2/handler'; -import tags from '../../src/v0/util/tags'; - -const integration = 'algolia'; -const destName = 'Algolia'; - -const inputDataFile = fs.readFileSync(path.resolve(__dirname, `./data/${integration}_input.json`), { - encoding: 'utf8', -}); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`), - { encoding: 'utf8' }, -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -describe(`${destName} Tests`, () => { - describe('Processor Tests', () => { - inputData.forEach((input, index) => { - it(`${destName} - payload: ${index}`, async () => { - const expected = expectedData[index]; - try { - const output = await processCdkV2Workflow(integration, input, tags.FEATURES.PROCESSOR); - expect(output).toEqual(expected); - } catch (error: any) { - expect(error.message).toEqual(expected.message); - } - }); - }); - }); - - const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`), - { encoding: 'utf8' }, - ); - const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`), - { encoding: 'utf8' }, - ); - const inputRouterData = JSON.parse(inputRouterDataFile); - const expectedRouterData = JSON.parse(outputRouterDataFile); - - describe('Router Tests', () => { - inputRouterData.forEach((input, index) => { - it(`${destName} - payload: ${index}`, async () => { - const expected = expectedRouterData[index]; - try { - const output = await processCdkV2Workflow(integration, input, tags.FEATURES.ROUTER); - expect(output).toEqual(expected); - } catch (error: any) { - // console.log(error); - expect(error.message).toEqual(expected.message); - } - }); - }); - }); -}); diff --git a/test/__tests__/algolia.test.js b/test/__tests__/algolia.test.js deleted file mode 100644 index c958ff237b..0000000000 --- a/test/__tests__/algolia.test.js +++ /dev/null @@ -1,58 +0,0 @@ -const integration = "algolia"; -const name = "algolia"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -inputData.forEach((input, index) => { - it(`${name} Tests: payload - ${index}`, () => { - let output, expected; - try { - output = transformer.process(input); - expected = expectedData[index]; - } catch (error) { - output = error.message; - // console.log(output); - expected = expectedData[index].message; - } - expect(output).toEqual(expected); - }); -}); - -const routerInputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const routerInputData = JSON.parse(routerInputDataFile); -const routerOutputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const routerOutputData = JSON.parse(routerOutputDataFile); - -describe("Router Tests", () => { - routerInputData.forEach((input, index) => { - it(`${name} Tests: payload - ${index}`, async () => { - let output, expected; - try { - output = await transformer.processRouterDest(input); - expected = routerOutputData[index]; - } catch (error) { - output = error.message; - // console.log(output); - expected = routerOutputData[index].message; - } - expect(output).toEqual(expected); - }); - }); -}); diff --git a/test/__tests__/appcues.test.js b/test/__tests__/appcues.test.js deleted file mode 100644 index 077d2e580c..0000000000 --- a/test/__tests__/appcues.test.js +++ /dev/null @@ -1,49 +0,0 @@ -const integration = "appcues"; -const name = "Appcues"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/attentive_tag.test.js b/test/__tests__/attentive_tag.test.js deleted file mode 100644 index ff8e278ece..0000000000 --- a/test/__tests__/attentive_tag.test.js +++ /dev/null @@ -1,51 +0,0 @@ -const integration = "attentive_tag"; -const name = "Attentive Tag"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -Date.now = jest.fn(() => new Date("2019-10-14T09:03:17.562Z")); - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/autopilot-cdk.test.ts b/test/__tests__/autopilot-cdk.test.ts deleted file mode 100644 index fcb0ad401b..0000000000 --- a/test/__tests__/autopilot-cdk.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { processCdkV2Workflow } from '../../src/cdk/v2/handler'; -import tags from '../../src/v0/util/tags'; - -const integration = 'autopilot'; -const destName = 'Autopilot'; - -const inputDataFile = fs.readFileSync(path.resolve(__dirname, `./data/${integration}_input.json`), { - encoding: 'utf8', -}); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_cdk_output.json`), - { encoding: 'utf8' }, -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -describe(`${destName} Tests`, () => { - describe('Processor Tests', () => { - inputData.forEach((input, index) => { - it(`${destName} - payload: ${index}`, async () => { - const expected = expectedData[index]; - try { - const output = await processCdkV2Workflow(integration, input, tags.FEATURES.PROCESSOR); - expect(output).toEqual(expected); - } catch (error: any) { - expect(error.message).toEqual(expected.error); - } - }); - }); - }); -}); diff --git a/test/__tests__/autopilot.test.js b/test/__tests__/autopilot.test.js deleted file mode 100644 index d2b226aea3..0000000000 --- a/test/__tests__/autopilot.test.js +++ /dev/null @@ -1,7 +0,0 @@ -const { - getDestFromTestFile, - executeTransformationTest -} = require("./utilities/test-utils"); - -executeTransformationTest(getDestFromTestFile(__filename), "processor"); -executeTransformationTest(getDestFromTestFile(__filename), "router"); diff --git a/test/__tests__/azure_event_hub.test.js b/test/__tests__/azure_event_hub.test.js deleted file mode 100644 index b76c7450cd..0000000000 --- a/test/__tests__/azure_event_hub.test.js +++ /dev/null @@ -1,46 +0,0 @@ -const integration = "azure_event_hub"; -const name = "Azure event Hub"; - -const fs = require("fs"); -const path = require("path"); -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); - -const dataWithMetadata = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_with_metadata.json`) -); - -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -inputData.forEach((input, index) => { - it(`${name} Tests: payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].message); - } - }); -}); - -test(`${name} Metadata parse test`, done => { - const inputData = JSON.parse(dataWithMetadata); - inputData.forEach(async (data, _) => { - try { - const output = transformer.processMetadata(data.input); - expect(output).toEqual(data.output); - done(); - } catch (error) { - done(error); - } - }); -}); diff --git a/test/__tests__/blueshift.test.js b/test/__tests__/blueshift.test.js deleted file mode 100644 index 156552b54b..0000000000 --- a/test/__tests__/blueshift.test.js +++ /dev/null @@ -1,51 +0,0 @@ -const integration = "blueshift"; -const name = "blueshift"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -// Processor Test Data -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/branch.test.js b/test/__tests__/branch.test.js deleted file mode 100644 index 74af08b18a..0000000000 --- a/test/__tests__/branch.test.js +++ /dev/null @@ -1,49 +0,0 @@ -const integration = "branch"; -const name = "Branch"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/candu.test.js b/test/__tests__/candu.test.js deleted file mode 100644 index 6a2fcadb23..0000000000 --- a/test/__tests__/candu.test.js +++ /dev/null @@ -1,49 +0,0 @@ -const integration = "candu"; -const name = "Candu"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/clevertap.test.js b/test/__tests__/clevertap.test.js index f5c95c3dfd..1a07c2f6bc 100644 --- a/test/__tests__/clevertap.test.js +++ b/test/__tests__/clevertap.test.js @@ -42,7 +42,7 @@ describe(`${name} Tests`, () => { describe("Router Tests", () => { it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); + const routerOutput = await transformer.processRouterDest(inputRouterData, {namespace: 'unknown', cluster: 'unknown'}); expect(routerOutput).toEqual(expectedRouterData); }); }); diff --git a/test/__tests__/confluent_cloud.test.js b/test/__tests__/confluent_cloud.test.js deleted file mode 100644 index 3c57ebccbe..0000000000 --- a/test/__tests__/confluent_cloud.test.js +++ /dev/null @@ -1,47 +0,0 @@ -const integration = "confluent_cloud"; -const name = "Confluent Cloud"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); - -const dataWithMetadata = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_with_metadata.json`) -); - -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -inputData.forEach((input, index) => { - it(`${name} Tests: payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].message); - } - }); -}); - -test(`${name} Metadata parse test`, done => { - const inputData = JSON.parse(dataWithMetadata); - inputData.forEach(async (data, _) => { - try { - const output = transformer.processMetadata(data.input); - expect(output).toEqual(data.output); - done(); - } catch (error) { - done(error); - } - }); -}); diff --git a/test/__tests__/courier.test.js b/test/__tests__/courier.test.js deleted file mode 100644 index 30c99a424c..0000000000 --- a/test/__tests__/courier.test.js +++ /dev/null @@ -1,46 +0,0 @@ -const integration = "courier"; -const name = "Courier"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -// Processor Test files -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test files -const routerTestDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router.json`) - ); -const routerTestData = JSON.parse(routerTestDataFile); - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach(async (dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - try { - const output = await transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.error); - } - }); - }); - }); - - describe("Router Tests", () => { - routerTestData.forEach(dataPoint => { - it("Payload", async () => { - const output = await transformer.processRouterDest(dataPoint.input); - expect(output).toEqual(dataPoint.output); - }); - }); - }); - -}); diff --git a/test/__tests__/criteo_audience.test.js b/test/__tests__/criteo_audience.test.js deleted file mode 100644 index 099fbd0a18..0000000000 --- a/test/__tests__/criteo_audience.test.js +++ /dev/null @@ -1,79 +0,0 @@ -const fs = require("fs"); -const path = require("path"); - -const integration = "criteo_audience"; -const name = "Criteo_Audience"; -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -// Mocking the config module to change the value of MAX_IDENTIFIERS -jest.mock(`../../src/${version}/destinations/${integration}/config`, () => { - const originalConfig= jest.requireActual(`../../src/${version}/destinations/${integration}/config`); - return { - ...originalConfig, - MAX_IDENTIFIERS: 5, - } -}); -jest.mock('ioredis', () => require('../../../test/__mocks__/redis')); -// Processor Test Data -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach((dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - try { - const output = await transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); - -describe("Router Tests for rETL sources", () => { - it("should send events to dest", async () => { - const input = JSON.parse( - fs.readFileSync( - path.resolve( - __dirname, - `data/${integration}_router_rETL_input.json` - ) - ) - ); - const output = JSON.parse( - fs.readFileSync( - path.resolve( - __dirname, - `data/${integration}_router_rETL_output.json` - ) - ) - ); - const actualOutput = await transformer.processRouterDest(input); - console.log(JSON.stringify(actualOutput)) - expect(actualOutput).toEqual(output); - }); -}); diff --git a/test/__tests__/customerio.test.js b/test/__tests__/customerio.test.js deleted file mode 100644 index 7170c0dc30..0000000000 --- a/test/__tests__/customerio.test.js +++ /dev/null @@ -1,51 +0,0 @@ -const integration = "customerio"; -const name = "CustomerIO"; - -const fs = require("fs"); -const path = require("path"); -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/customerio/transform`); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -for (let index = 0; index < inputData.length; index++) { - it(`${name} Tests - payload: ${index}`, () => { - let output, expected; - try { - output = transformer.process(inputData[index]); - expected = expectedData[index]; - } catch (error) { - output = error.message; - expected = expectedData[index].message; - } - - expect(output).toEqual(expected); - }); -} - -describe(`${name} Tests`, () => { - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/data/algolia_input.json b/test/__tests__/data/algolia_input.json deleted file mode 100644 index ee55f465bb..0000000000 --- a/test/__tests__/data/algolia_input.json +++ /dev/null @@ -1,804 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product clicked", - "userId": "testuserId1", - "properties": { - "index": "products", - "filters": ["field1:hello", "val1:val2"] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "cLick " - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product list viewed", - "userId": "testuserId1", - "properties": { - "index": "products", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": 7 - }, - { - "objectId": "9780439784542", - "position": 8 - } - ], - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product list viewed", - "to": "click" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product clicked", - "userId": "testuserId1", - "properties": { - "eventType": "click", - "index": "products", - "queryId": "43b15df305339e827f0ac0bdc5ebcaa8" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "testuserId1", - "event": "product clicked", - "properties": { - "index": "products", - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product list viewed", - "userId": "testuserId1", - "properties": { - "index": "products", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": 7 - }, - { - "objectId": "9780439784542", - "position": 8 - } - ], - "queryId": "" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product list viewed", - "to": "click" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product list viewed", - "userId": "testuserId1", - "properties": { - "index": "products", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": 7 - }, - { - "objectId": "9780439784542", - "position": 8 - } - ], - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product list viewed", - "to": "view" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product list viewed", - "userId": "testuserId1", - "properties": { - "index": "products", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": "7" - }, - { - "objectId": "9780439784542", - "position": "a" - } - ], - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product list viewed", - "to": "click" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product list viewed", - "userId": "testuserId1", - "properties": { - "index": "products", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": "7" - }, - { - "objectId": "9780439784542", - "position": "a" - } - ], - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product list viewed", - "to": "check" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product list viewed", - "userId": "testuserId1", - "properties": { - "index": "products", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": "7" - }, - { - "objectId": "9780439784542", - "position": "a" - } - ], - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product clicked", - "userId": "testuserId1", - "properties": { - "filters": ["field1:hello", "val1:val2"] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "cLick " - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": ["abc", "def"], - "userId": "testuserId1", - "properties": { - "filters": ["field1:hello", "val1:val2"] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "cLick " - } - ] - } - } - } -] diff --git a/test/__tests__/data/algolia_output.json b/test/__tests__/data/algolia_output.json deleted file mode 100644 index 04cdb6ca9d..0000000000 --- a/test/__tests__/data/algolia_output.json +++ /dev/null @@ -1,121 +0,0 @@ -[ - { - "body": { - "FORM": {}, - "JSON_ARRAY": {}, - "JSON": { - "events": [ - { - "eventName": "product clicked", - "eventType": "click", - "filters": ["field1:hello", "val1:val2"], - "index": "products", - "userToken": "testuserId1" - } - ] - }, - "XML": {} - }, - "endpoint": "https://insights.algolia.io/1/events", - "files": {}, - "headers": { - "X-Algolia-API-Key": "dummyApiKey", - "X-Algolia-Application-Id": "O2YARRI15I" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - }, - { - "body": { - "FORM": {}, - "JSON_ARRAY": {}, - "JSON": { - "events": [ - { - "eventName": "product list viewed", - "eventType": "click", - "objectIDs": ["ecommerce-sample-data-919", "9780439784542"], - "positions": [7, 8], - "index": "products", - "userToken": "testuserId1", - "queryID": "43b15df305339e827f0ac0bdc5ebcaa7" - } - ] - }, - "XML": {} - }, - "endpoint": "https://insights.algolia.io/1/events", - "files": {}, - "headers": { - "X-Algolia-API-Key": "dummyApiKey", - "X-Algolia-Application-Id": "O2YARRI15I" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - }, - { - "statusCode": "400", - "message": "Either filters or objectIds is required." - }, - { - "statusCode": "400", - "message": "eventType is mandatory for track call" - }, - { - "statusCode": "400", - "message": "for click eventType either both positions and queryId should be present or none" - }, - { - "body": { - "FORM": {}, - "JSON_ARRAY": {}, - "JSON": { - "events": [ - { - "eventName": "product list viewed", - "eventType": "view", - "index": "products", - "objectIDs": ["ecommerce-sample-data-919", "9780439784542"], - "userToken": "testuserId1", - "queryID": "43b15df305339e827f0ac0bdc5ebcaa7" - } - ] - }, - "XML": {} - }, - "endpoint": "https://insights.algolia.io/1/events", - "files": {}, - "headers": { - "X-Algolia-API-Key": "dummyApiKey", - "X-Algolia-Application-Id": "O2YARRI15I" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - }, - { - "statusCode": "400", - "message": "for click eventType either both positions and queryId should be present or none" - }, - { - "statusCode": "400", - "message": "eventType can be either click, view or conversion" - }, - { - "statusCode": "400", - "message": "eventType is mandatory for track call" - }, - { - "statusCode": "400", - "message": "Missing required value from \"properties.index\"" - }, - { - "statusCode": "400", - "message": "event name should be a string" - } -] diff --git a/test/__tests__/data/algolia_router_input.json b/test/__tests__/data/algolia_router_input.json deleted file mode 100644 index c56e8d2a64..0000000000 --- a/test/__tests__/data/algolia_router_input.json +++ /dev/null @@ -1,1902 +0,0 @@ -[ - [ - { - "message": { - "type": "track", - "event": "product list viewed", - "sentAt": "2021-10-25T09:40:08.880Z", - "userId": "test-user-id1", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.1", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:5500/index.html", - "path": "/index.html", - "title": "Test", - "search": "", - "tab_url": "http://127.0.0.1:5500/index.html", - "referrer": "http://127.0.0.1:5500/index.html", - "initial_referrer": "http://127.0.0.1:5500/index.html", - "referring_domain": "127.0.0.1:5500", - "initial_referring_domain": "127.0.0.1:5500" - }, - "locale": "en-GB", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 1440, - "innerHeight": 335 - }, - "traits": { - "city": "Brussels", - "email": "testemail@email.com", - "phone": "1234567890", - "country": "Belgium", - "firstName": "Tintin", - "custom_date": 1574769933368, - "custom_date1": "2019-10-14T11:15:53.296Z", - "custom_flavor": "chocolate" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.1" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36" - }, - "rudderId": "e3e907f1-f79a-444b-b91d-da47488f8273", - "messageId": "8cdd3d2e-5e07-42ec-abdc-9b6bd4333840", - "timestamp": "2021-10-25T15:10:08.888+05:30", - "properties": { - "index": "products", - "queryId": "43b15df305339e827f0ac0bdc5ebcaa7", - "products": [ - { - "objectId": "ecommerce-sample-data-919", - "position": 7 - }, - { - "objectId": "9780439784542", - "position": 8 - } - ] - }, - "receivedAt": "2021-10-25T15:10:08.889+05:30", - "request_ip": "[::1]", - "anonymousId": "7138f7d9-5dd2-4337-805d-ca17be59dc8e", - "integrations": { - "All": true - }, - "originalTimestamp": "2021-10-25T09:40:08.879Z" - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "ID": "1zzHtStW2ZPlullmz6L7DGnmk9V", - "Name": "algolia-dev", - "DestinationDefinition": { - "ID": "1zgVZhcj1Tij4qlKg7B1Jp16IrH", - "Name": "ALGOLIA", - "DisplayName": "Algolia", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "applicationId", "eventTypeSettings"] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["apiKey", "applicationId"], - "supportedMessageTypes": ["track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "apiKey", - "applicationId": "appId", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "click" - }, - { - "from": "product list viewed", - "to": "view" - } - ] - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "type": "track", - "event": "product clicked", - "sentAt": "2021-10-25T09:40:08.886Z", - "userId": "test-user-id1", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.1", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:5500/index.html", - "path": "/index.html", - "title": "Test", - "search": "", - "tab_url": "http://127.0.0.1:5500/index.html", - "referrer": "http://127.0.0.1:5500/index.html", - "initial_referrer": "http://127.0.0.1:5500/index.html", - "referring_domain": "127.0.0.1:5500", - "initial_referring_domain": "127.0.0.1:5500" - }, - "locale": "en-GB", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 1440, - "innerHeight": 335 - }, - "traits": { - "city": "Brussels", - "email": "testemail@email.com", - "phone": "1234567890", - "country": "Belgium", - "firstName": "Tintin", - "custom_date": 1574769933368, - "custom_date1": "2019-10-14T11:15:53.296Z", - "custom_flavor": "chocolate" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.1" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36" - }, - "rudderId": "e3e907f1-f79a-444b-b91d-da47488f8273", - "messageId": "7b58e140-b66b-4e88-a5ec-bd6811fc3836", - "timestamp": "2021-10-25T15:10:08.943+05:30", - "properties": { - "index": "products", - "filters": ["field1:hello", "val1:val2"] - }, - "receivedAt": "2021-10-25T15:10:08.943+05:30", - "request_ip": "[::1]", - "anonymousId": "7138f7d9-5dd2-4337-805d-ca17be59dc8e", - "integrations": { - "All": true - }, - "originalTimestamp": "2021-10-25T09:40:08.886Z" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "ID": "1zzHtStW2ZPlullmz6L7DGnmk9V", - "Name": "algolia-dev", - "DestinationDefinition": { - "ID": "1zgVZhcj1Tij4qlKg7B1Jp16IrH", - "Name": "ALGOLIA", - "DisplayName": "Algolia", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "applicationId", "eventTypeSettings"] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["apiKey", "applicationId"], - "supportedMessageTypes": ["track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "apiKey-2", - "applicationId": "appId-2", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "click" - }, - { - "from": "product list viewed", - "to": "view" - } - ] - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "testone@gmail.com", - "firstName": "test", - "lastName": "one" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/ometria", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/ometria", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "track", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "event": "product clicked", - "userId": "testuserId1", - "properties": { - "filters": ["field1:hello", "val1:val2"] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "metadata": { - "jobId": 3 - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "cLick " - } - ] - } - } - } - ], - [], - {}, - [ - { - "message": { - "type": "track", - "event": "Product List Viewed", - "sentAt": "2023-06-19T22:22:34.928Z", - "userId": "anonymous", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "version": "2.35.0", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "https://m2-staging.ecmdi.com/supplies/air-distribution/grilles", - "path": "/supplies/air-distribution/grilles/", - "title": "Grilles - Air Distribution - Supplies | East Coast Metal Distributors", - "search": "", - "tab_url": "https://m2-staging.ecmdi.com/supplies/air-distribution/grilles", - "referrer": "https://m2-staging.ecmdi.com/", - "initial_referrer": "https://m2-staging.ecmdi.com/", - "referring_domain": "m2-staging.ecmdi.com", - "initial_referring_domain": "m2-staging.ecmdi.com" - }, - "locale": "en", - "screen": { - "width": 2560, - "height": 1440, - "density": 1, - "innerWidth": 2514, - "innerHeight": 567 - }, - "traits": { - "loggedIn": false, - "customerId": "anonymous" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "2.35.0" - }, - "campaign": {}, - "sessionId": 1687204412379, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0", - "trackingPlanId": "tp_2P3vmVzstHPms8hwcqHYwgBjIC7", - "violationErrors": [ - { - "meta": { - "schemaPath": "#/properties/properties/properties/list_id/type", - "instacePath": "/properties/list_id" - }, - "type": "Datatype-Mismatch", - "message": "must be string" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/0" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/1" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/2" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/3" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/4" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/5" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/6" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/7" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/8" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/9" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/10" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/11" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/12" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/13" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/14" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/15" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/16" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/17" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'bu_product_num'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'erp_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'list_name'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'location_id'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'mpn'" - }, - { - "meta": { - "schemaPath": "#/properties/properties/properties/products/items/additionalProperties", - "instacePath": "/properties/products/18" - }, - "type": "Additional-Properties", - "message": "must NOT have additional properties 'pim_id'" - } - ], - "trackingPlanVersion": 2 - }, - "rudderId": "0d1f77df-5882-402a-a69f-d2dfe3175ebc", - "timestamp": "2023-06-19T19:54:39.188Z", - "properties": { - "index": "ecm_stg_product", - "list_id": 1100000063100, - "queryId": "eafb6ef1081263626abce46671147dc0", - "products": [ - { - "mpn": "190RF14X20", - "sku": "1367585787601", - "name": "14\" x 20\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168782", - "pim_id": "1367585787601", - "list_id": 1100000063100, - "category": "Grilles", - "position": 1, - "list_name": "Grilles", - "product_id": "49765", - "location_id": 1, - "bu_product_num": "49765" - }, - { - "mpn": "190RF20X20", - "sku": "1367585788656", - "name": "20\" x 20\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168790", - "pim_id": "1367585788656", - "list_id": 1100000063100, - "category": "Grilles", - "position": 2, - "list_name": "Grilles", - "product_id": "49773", - "location_id": 1, - "bu_product_num": "49773" - }, - { - "mpn": "210VM10X04", - "sku": "1367585790735", - "name": "10\" x 4\" Bar Type Supply Sidewall/Ceiling Register - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "300529", - "pim_id": "1367585790735", - "list_id": 1100000063100, - "category": "Grilles", - "position": 3, - "list_name": "Grilles", - "product_id": "300529A", - "location_id": 1, - "bu_product_num": "300529A" - }, - { - "mpn": "17014X06", - "sku": "1367585782036", - "name": "14\" x 6\" Stamped Face Return Air Grille - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168752", - "pim_id": "1367585782036", - "list_id": 1100000063100, - "category": "Grilles", - "position": 4, - "list_name": "Grilles", - "product_id": "49741", - "location_id": 1, - "bu_product_num": "49741" - }, - { - "mpn": "17014X04", - "sku": "1367585782285", - "name": "14\" x 4\" Stamped Face Return Air Grille - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168751", - "pim_id": "1367585782285", - "list_id": 1100000063100, - "category": "Grilles", - "position": 5, - "list_name": "Grilles", - "product_id": "49740", - "location_id": 1, - "bu_product_num": "49740" - }, - { - "mpn": "190RF14X14", - "sku": "1367585790111", - "name": "14\" x 14\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168781", - "pim_id": "1367585790111", - "list_id": 1100000063100, - "category": "Grilles", - "position": 6, - "list_name": "Grilles", - "product_id": "49764", - "location_id": 1, - "bu_product_num": "49764" - }, - { - "mpn": "17014X10", - "sku": "1367585783304", - "name": "14\" x 10\" Stamped Face Return Air Grille - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168755", - "pim_id": "1367585783304", - "list_id": 1100000063100, - "category": "Grilles", - "position": 7, - "list_name": "Grilles", - "product_id": "49743", - "location_id": 1, - "bu_product_num": "49743" - }, - { - "mpn": "210VM12X04", - "sku": "1367585791531", - "name": "12\" x 4\" Bar Type Supply Sidewall/Ceiling Register - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "240862", - "pim_id": "1367585791531", - "list_id": 1100000063100, - "category": "Grilles", - "position": 8, - "list_name": "Grilles", - "product_id": "49934", - "location_id": 1, - "bu_product_num": "49934" - }, - { - "mpn": "190RF20X25", - "sku": "1367585788307", - "name": "20\" x 25\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168791", - "pim_id": "1367585788307", - "list_id": 1100000063100, - "category": "Grilles", - "position": 9, - "list_name": "Grilles", - "product_id": "49774", - "location_id": 1, - "bu_product_num": "49774" - }, - { - "mpn": "190RF20X14", - "sku": "1367585789457", - "name": "20\" x 14\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168788", - "pim_id": "1367585789457", - "list_id": 1100000063100, - "category": "Grilles", - "position": 10, - "list_name": "Grilles", - "product_id": "49771", - "location_id": 1, - "bu_product_num": "49771" - }, - { - "mpn": "401M10X04", - "sku": "1367585800344", - "name": "10\" x 4\" Stamped Curved Blade Supply Sidewall/Ceiling Register", - "brand": "TRUaire", - "price": 0, - "erp_id": "300734", - "pim_id": "1367585800344", - "list_id": 1100000063100, - "category": "Grilles", - "position": 11, - "list_name": "Grilles", - "product_id": "300734A", - "location_id": 1, - "bu_product_num": "300734A" - }, - { - "mpn": "190RF14X25", - "sku": "1367585787467", - "name": "14\" x 25\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168783", - "pim_id": "1367585787467", - "list_id": 1100000063100, - "category": "Grilles", - "position": 12, - "list_name": "Grilles", - "product_id": "49766", - "location_id": 1, - "bu_product_num": "49766" - }, - { - "mpn": "17020X10", - "sku": "1367585783058", - "name": "20\" x 10\" Stamped Face Return Air Grille - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "219506", - "pim_id": "1367585783058", - "list_id": 1100000063100, - "category": "Grilles", - "position": 13, - "list_name": "Grilles", - "product_id": "49881", - "location_id": 1, - "bu_product_num": "49881" - }, - { - "mpn": "17020X08", - "sku": "1367585783494", - "name": "20\" x 8\" Stamped Face Return Air Grille - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "210374", - "pim_id": "1367585783494", - "list_id": 1100000063100, - "category": "Grilles", - "position": 14, - "list_name": "Grilles", - "product_id": "210374A", - "location_id": 1, - "bu_product_num": "210374A" - }, - { - "mpn": "190RF12X12", - "sku": "1367585787042", - "name": "12\" x 12\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168777", - "pim_id": "1367585787042", - "list_id": 1100000063100, - "category": "Grilles", - "position": 15, - "list_name": "Grilles", - "product_id": "49761", - "location_id": 1, - "bu_product_num": "49761" - }, - { - "mpn": "210VM14X04", - "sku": "1367585793228", - "name": "14\" x 4\" Bar Type Supply Sidewall/Ceiling Register - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "232771", - "pim_id": "1367585793228", - "list_id": 1100000063100, - "category": "Grilles", - "position": 16, - "list_name": "Grilles", - "product_id": "49907", - "location_id": 1, - "bu_product_num": "49907" - }, - { - "mpn": "17014X144", - "sku": "1367585783124", - "name": "14\" x 14\" Stamped Face Return Air Grille - White - 4 Holes", - "brand": "TRUaire", - "price": 0, - "erp_id": "168757", - "pim_id": "1367585783124", - "list_id": 1100000063100, - "category": "Grilles", - "position": 17, - "list_name": "Grilles", - "product_id": "49744", - "location_id": 1, - "bu_product_num": "49744" - }, - { - "mpn": "190RF20X30", - "sku": "1367585788366", - "name": "20\" x 30\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168792", - "pim_id": "1367585788366", - "list_id": 1100000063100, - "category": "Grilles", - "position": 18, - "list_name": "Grilles", - "product_id": "49775", - "location_id": 1, - "bu_product_num": "49775" - }, - { - "mpn": "190RF16X25", - "sku": "1367585788996", - "name": "16\" x 25\" Stamped Face Return Air Filter Grille with Removable Face - White", - "brand": "TRUaire", - "price": 0, - "erp_id": "168786", - "pim_id": "1367585788996", - "list_id": 1100000063100, - "category": "Grilles", - "position": 19, - "list_name": "Grilles", - "product_id": "49769", - "location_id": 1, - "bu_product_num": "49769" - } - ], - "eventName": "productListView", - "eventType": "view", - "list_name": "Grilles", - "objectIds": [ - "1367585787601", - "1367585788656", - "1367585790735", - "1367585782036", - "1367585782285", - "1367585790111", - "1367585783304", - "1367585791531", - "1367585788307", - "1367585789457", - "1367585800344", - "1367585787467", - "1367585783058", - "1367585783494", - "1367585787042", - "1367585793228", - "1367585783124", - "1367585788366", - "1367585788996" - ], - "positions": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], - "userToken": "anonymous" - }, - "receivedAt": "2023-06-19T22:22:32.431Z", - "request_ip": "104.205.211.60", - "anonymousId": "7b701174-5998-480e-a4df-b322d0ec9d1c", - "integrations": { - "All": true - }, - "originalTimestamp": "2023-06-19T19:54:41.686Z" - }, - "destination": { - "secretConfig": {}, - "Config": { - "apiKey": "apiKey", - "applicationId": "appId", - "eventTypeSettings": [ - { - "from": "productClicked", - "to": "click" - }, - { - "from": "product list filtered", - "to": "click" - }, - { - "from": "Product List Viewed", - "to": "view" - }, - { - "from": "Order Completed", - "to": "conversion" - }, - { - "from": "Product Added", - "to": "click" - } - ], - "oneTrustCookieCategories": [], - "eventDelivery": false, - "eventDeliveryTS": 1687213909459 - }, - "liveEventsConfig": { - "eventDelivery": false, - "eventDeliveryTS": 1687213909459 - }, - "id": "destId", - "workspaceId": "wspId", - "DestinationDefinition": { - "Config": { - "destConfig": { - "defaultConfig": [ - "apiKey", - "applicationId", - "eventTypeSettings", - "oneTrustCookieCategories" - ] - }, - "secretKeys": ["apiKey", "applicationId"], - "excludeKeys": [], - "includeKeys": ["oneTrustCookieCategories"], - "transformAt": "router", - "cdkV2Enabled": true, - "transformAtV1": "router", - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova", - "warehouse" - ], - "supportedMessageTypes": ["track"], - "saveDestinationResponse": true - }, - "configSchema": {}, - "responseRules": {}, - "options": null, - "id": "1xrHTzX8VrnvL6FTGOrBBgT687S", - "name": "ALGOLIA", - "displayName": "Algolia", - "category": null, - "createdAt": "2021-09-08T13:04:58.041Z", - "updatedAt": "2023-06-13T13:18:08.335Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true, - "name": "my_algolia", - "enabled": true, - "deleted": false, - "createdAt": "2023-05-26T14:18:01.205Z", - "updatedAt": "2023-06-19T22:31:49.460Z", - "revisionId": "revisionId1", - "secretVersion": 7 - }, - "metadata": { - "sourceId": "srcId", - "workspaceId": "wspId", - "destinationId": "destId", - "jobId": 12 - } - } - ] -] diff --git a/test/__tests__/data/algolia_router_output.json b/test/__tests__/data/algolia_router_output.json deleted file mode 100644 index 95f0bcb8f9..0000000000 --- a/test/__tests__/data/algolia_router_output.json +++ /dev/null @@ -1,288 +0,0 @@ -[ - [ - { - "metadata": [ - { - "jobId": 3 - } - ], - "batched": false, - "statusCode": 400, - "error": "Missing required value from \"properties.index\"", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "applicationId": "O2YARRI15I", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "cLick " - } - ] - } - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://insights.algolia.io/1/events", - "headers": { - "X-Algolia-Application-Id": "appId", - "X-Algolia-API-Key": "apiKey" - }, - "params": {}, - "body": { - "JSON": { - "events": [ - { - "index": "products", - "userToken": "test-user-id1", - "queryID": "43b15df305339e827f0ac0bdc5ebcaa7", - "eventName": "product list viewed", - "eventType": "view", - "objectIDs": ["ecommerce-sample-data-919", "9780439784542"] - }, - { - "index": "products", - "userToken": "test-user-id1", - "filters": ["field1:hello", "val1:val2"], - "eventName": "product clicked", - "eventType": "click" - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 1 - }, - { - "jobId": 2 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "ID": "1zzHtStW2ZPlullmz6L7DGnmk9V", - "Name": "algolia-dev", - "DestinationDefinition": { - "ID": "1zgVZhcj1Tij4qlKg7B1Jp16IrH", - "Name": "ALGOLIA", - "DisplayName": "Algolia", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "applicationId", "eventTypeSettings"] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["apiKey", "applicationId"], - "supportedMessageTypes": ["track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "apiKey", - "applicationId": "appId", - "eventTypeSettings": [ - { - "from": "product clicked", - "to": "click" - }, - { - "from": "product list viewed", - "to": "view" - } - ] - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } - ], - { - "message": "Invalid event array", - "statusCode": 400 - }, - { - "message": "Invalid event array", - "statusCode": 400 - }, - [ - { - "batched": true, - "batchedRequest": { - "body": { - "FORM": {}, - "JSON": { - "events": [ - { - "eventName": "product list viewed", - "eventType": "view", - "index": "ecm_stg_product", - "objectIDs": [ - "1367585787601", - "1367585788656", - "1367585790735", - "1367585782036", - "1367585782285", - "1367585790111", - "1367585783304", - "1367585791531", - "1367585788307", - "1367585789457", - "1367585800344", - "1367585787467", - "1367585783058", - "1367585783494", - "1367585787042", - "1367585793228", - "1367585783124", - "1367585788366", - "1367585788996" - ], - "queryID": "eafb6ef1081263626abce46671147dc0", - "userToken": "anonymous" - } - ] - }, - "JSON_ARRAY": {}, - "XML": {} - }, - "endpoint": "https://insights.algolia.io/1/events", - "files": {}, - "headers": { - "X-Algolia-API-Key": "apiKey", - "X-Algolia-Application-Id": "appId" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - }, - "destination": { - "Config": { - "apiKey": "apiKey", - "applicationId": "appId", - "eventDelivery": false, - "eventDeliveryTS": 1687213909459, - "eventTypeSettings": [ - { - "from": "productClicked", - "to": "click" - }, - { - "from": "product list filtered", - "to": "click" - }, - { - "from": "Product List Viewed", - "to": "view" - }, - { - "from": "Order Completed", - "to": "conversion" - }, - { - "from": "Product Added", - "to": "click" - } - ], - "oneTrustCookieCategories": [] - }, - "DestinationDefinition": { - "Config": { - "cdkV2Enabled": true, - "destConfig": { - "defaultConfig": [ - "apiKey", - "applicationId", - "eventTypeSettings", - "oneTrustCookieCategories" - ] - }, - "excludeKeys": [], - "includeKeys": ["oneTrustCookieCategories"], - "saveDestinationResponse": true, - "secretKeys": ["apiKey", "applicationId"], - "supportedMessageTypes": ["track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova", - "warehouse" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "category": null, - "configSchema": {}, - "createdAt": "2021-09-08T13:04:58.041Z", - "displayName": "Algolia", - "id": "1xrHTzX8VrnvL6FTGOrBBgT687S", - "name": "ALGOLIA", - "options": null, - "responseRules": {}, - "updatedAt": "2023-06-13T13:18:08.335Z" - }, - "createdAt": "2023-05-26T14:18:01.205Z", - "deleted": false, - "enabled": true, - "id": "destId", - "isConnectionEnabled": true, - "isProcessorEnabled": true, - "liveEventsConfig": { - "eventDelivery": false, - "eventDeliveryTS": 1687213909459 - }, - "name": "my_algolia", - "revisionId": "revisionId1", - "secretConfig": {}, - "secretVersion": 7, - "transformations": [], - "updatedAt": "2023-06-19T22:31:49.460Z", - "workspaceId": "wspId" - }, - "metadata": [ - { - "sourceId": "srcId", - "workspaceId": "wspId", - "destinationId": "destId", - "jobId": 12 - } - ], - "statusCode": 200 - } - ] -] diff --git a/test/__tests__/data/appcues_input.json b/test/__tests__/data/appcues_input.json deleted file mode 100644 index 0ea31075e4..0000000000 --- a/test/__tests__/data/appcues_input.json +++ /dev/null @@ -1,750 +0,0 @@ -[ - { - "message": { - "anonymousId": "33787665-4168-4acc-8df7-17ba79325332", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "6a5f38c0-4e75-4268-a066-2b73fbcad01f", - "originalTimestamp": "2021-01-04T08:25:04.780Z", - "receivedAt": "2021-01-04T13:55:04.799+05:30", - "request_ip": "[::1]", - "rudderId": "79881a62-980a-4d76-89ca-7099440f8c13", - "sentAt": "2021-01-04T08:25:04.781Z", - "timestamp": "2021-01-04T13:55:04.798+05:30", - "type": "identify", - "userId": "onlyUserId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "33787665-4168-4acc-8df7-17ba79325332", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "first name": "John", - "last name": "Abraham" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "57494c6a-3c62-4b30-83aa-6e821d37ac75", - "originalTimestamp": "2021-01-04T08:25:04.786Z", - "receivedAt": "2021-01-04T13:55:04.799+05:30", - "request_ip": "[::1]", - "rudderId": "ed2ed08a-3cd9-4b2c-9b04-7e3d3501fab7", - "sentAt": "2021-01-04T08:25:04.787Z", - "timestamp": "2021-01-04T13:55:04.798+05:30", - "type": "identify", - "userId": "userIdWithProperties" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "59f2911c-f050-497d-9f80-e1696a3c56aa", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "event": "eventWithoutProperties", - "integrations": { - "All": true - }, - "messageId": "045f5107-6036-4557-ae17-6ddf5ee57eb6", - "originalTimestamp": "2021-01-04T08:33:07.004Z", - "properties": {}, - "receivedAt": "2021-01-04T14:03:07.009+05:30", - "request_ip": "[::1]", - "rudderId": "9b6b8204-292c-493b-9c08-2c3ec0ade688", - "sentAt": "2021-01-04T08:33:07.005Z", - "timestamp": "2021-01-04T14:03:07.008+05:30", - "type": "track", - "userId": "sampleId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "59f2911c-f050-497d-9f80-e1696a3c56aa", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "event": "eventWithProperties", - "integrations": { - "All": true - }, - "messageId": "4b99c45d-8591-473c-b79d-abd466f6f4d5", - "originalTimestamp": "2021-01-04T08:33:07.006Z", - "properties": { - "category": "blah" - }, - "receivedAt": "2021-01-04T14:03:07.026+05:30", - "request_ip": "[::1]", - "rudderId": "9b6b8204-292c-493b-9c08-2c3ec0ade688", - "sentAt": "2021-01-04T08:33:07.006Z", - "timestamp": "2021-01-04T14:03:07.026+05:30", - "type": "track", - "userId": "sampleId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "a4a6304a-df41-4ca9-b2b7-4b0009dfddaa", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "75a9e08b-955a-4dc7-8a39-3f6fba9d7497", - "originalTimestamp": "2021-01-04T08:43:05.783Z", - "properties": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "receivedAt": "2021-01-04T14:13:05.800+05:30", - "request_ip": "[::1]", - "rudderId": "2d03081c-8053-4cce-9abf-bb024f747900", - "sentAt": "2021-01-04T08:43:05.783Z", - "timestamp": "2021-01-04T14:13:05.799+05:30", - "type": "page", - "userId": "sampleId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "a4a6304a-df41-4ca9-b2b7-4b0009dfddaa", - "category": "page category", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/testing", - "referrer": "", - "search": "", - "title": "", - "url": "https://pagecall.com/testing" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "397fdf96-daee-46c8-ac38-5d717cd8cabd", - "name": "page name", - "originalTimestamp": "2021-01-04T08:43:05.784Z", - "properties": { - "category": "page category", - "name": "page name", - "path": "/testing", - "referrer": "", - "search": "", - "title": "", - "url": "https://pagecall.com/testing" - }, - "receivedAt": "2021-01-04T14:13:05.801+05:30", - "request_ip": "[::1]", - "rudderId": "2d03081c-8053-4cce-9abf-bb024f747900", - "sentAt": "2021-01-04T08:43:05.784Z", - "timestamp": "2021-01-04T14:13:05.801+05:30", - "type": "page", - "userId": "sampleId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "a4a6304a-df41-4ca9-b2b7-4b0009dfddaa", - "category": "page category", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/testing", - "referrer": "", - "search": "" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "397fdf96-daee-46c8-ac38-5d717cd8cabd", - "name": "page name", - "originalTimestamp": "2021-01-04T08:43:05.784Z", - "properties": { - "category": "page category", - "name": "page name", - "path": "/testing", - "referrer": "", - "search": "", - "title": "properties title", - "url": "https://pagecall.com/properties_url" - }, - "receivedAt": "2021-01-04T14:13:05.801+05:30", - "request_ip": "[::1]", - "rudderId": "2d03081c-8053-4cce-9abf-bb024f747900", - "sentAt": "2021-01-04T08:43:05.784Z", - "timestamp": "2021-01-04T14:13:05.801+05:30", - "type": "page", - "userId": "sampleId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "a4a6304a-df41-4ca9-b2b7-4b0009dfddaa", - "category": "page category", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/testing", - "referrer": "", - "search": "", - "title": "context title", - "url": "https://pagecall.com/context_url" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "397fdf96-daee-46c8-ac38-5d717cd8cabd", - "name": "page name", - "originalTimestamp": "2021-01-04T08:43:05.784Z", - "properties": { - "category": "page category", - "name": "page name", - "path": "/testing", - "referrer": "", - "search": "" - }, - "receivedAt": "2021-01-04T14:13:05.801+05:30", - "request_ip": "[::1]", - "rudderId": "2d03081c-8053-4cce-9abf-bb024f747900", - "sentAt": "2021-01-04T08:43:05.784Z", - "timestamp": "2021-01-04T14:13:05.801+05:30", - "type": "page", - "userId": "sampleId" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "5094f5704b9cf2b3", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AppcuesIntegration", - "namespace": "com.Appcues", - "version": "1.0" - }, - "device": { - "id": "5094f5704b9cf2b3", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.1-beta.1" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "8.1.0" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5094f5704b9cf2b3" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)" - }, - "event": "MainActivity", - "integrations": { - "All": true - }, - "messageId": "id1", - "properties": { - "name": "MainActivity", - "automatic": true - }, - "originalTimestamp": "2020-03-12T09:05:03.421Z", - "type": "screen", - "userId": "sampleId", - "sentAt": "2020-03-12T09:05:13.042Z" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "5094f5704b9cf2b3", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AppcuesIntegration", - "namespace": "com.Appcues", - "version": "1.0" - }, - "device": { - "id": "5094f5704b9cf2b3", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.1-beta.1" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "8.1.0" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5094f5704b9cf2b3" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)" - }, - "event": "MainActivity", - "integrations": { - "All": true - }, - "messageId": "id1", - "properties": { - "name": "MainActivity", - "automatic": true - }, - "originalTimestamp": "2020-03-12T09:05:03.421Z", - "type": "screen", - "sentAt": "2020-03-12T09:05:13.042Z" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "5094f5704b9cf2b3", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AppcuesIntegration", - "namespace": "com.Appcues", - "version": "1.0" - }, - "device": { - "id": "5094f5704b9cf2b3", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.1-beta.1" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "8.1.0" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5094f5704b9cf2b3" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)" - }, - "event": "MainActivity", - "integrations": { - "All": true - }, - "messageId": "id1", - "properties": { - "name": "MainActivity", - "automatic": true - }, - "originalTimestamp": "2020-03-12T09:05:03.421Z", - "type": "", - "userId": "sampleId", - "sentAt": "2020-03-12T09:05:13.042Z" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "Shehan Study", - "category": "SampleIdentify", - "email": "test@rudderstack.com", - "plan": "Open source", - "logins": 5, - "createdAt": 1599264000 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.5" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 0.8999999761581421 - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign", - "test": "other value" - }, - "page": { - "path": "/html/sajal.html", - "referrer": "", - "search": "?utm_source=google&utm_medium=medium&utm_term=keyword&utm_content=some%20content&utm_campaign=some%20campaign&utm_test=other%20value", - "title": "", - "url": "http://localhost:9116/html/sajal.html?utm_source=google&utm_medium=medium&utm_term=keyword&utm_content=some%20content&utm_campaign=some%20campaign&utm_test=other%20value" - } - }, - "type": "group", - "messageId": "e5034df0-a404-47b4-a463-76df99934fea", - "originalTimestamp": "2020-10-20T07:54:58.983Z", - "anonymousId": "my-anonymous-id-new", - "userId": "sampleusrRudder3", - "integrations": { - "All": true - }, - "groupId": "Sample_groupId23", - "traits": { - "KEY_3": { - "CHILD_KEY_92": "value_95", - "CHILD_KEY_102": "value_103" - }, - "KEY_2": { - "CHILD_KEY_92": "value_95", - "CHILD_KEY_102": "value_103" - }, - "name_trait": "Company", - "value_trait": "Comapny-ABC" - }, - "sentAt": "2020-10-20T07:54:58.983Z" - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - } -] diff --git a/test/__tests__/data/appcues_output.json b/test/__tests__/data/appcues_output.json deleted file mode 100644 index c8356726a2..0000000000 --- a/test/__tests__/data/appcues_output.json +++ /dev/null @@ -1,320 +0,0 @@ -[ - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "request_id": "6a5f38c0-4e75-4268-a066-2b73fbcad01f", - "profile_update": {} - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/onlyUserId/activity" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "request_id": "57494c6a-3c62-4b30-83aa-6e821d37ac75", - "profile_update": { - "last name": "Abraham", - "first name": "John" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/userIdWithProperties/activity" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "events": [ - { - "name": "eventWithoutProperties", - "timestamp": 1609749187, - "attributes": {} - } - ], - "request_id": "045f5107-6036-4557-ae17-6ddf5ee57eb6" - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "events": [ - { - "name": "eventWithProperties", - "timestamp": 1609749187, - "attributes": { - "category": "blah" - } - } - ], - "request_id": "4b99c45d-8591-473c-b79d-abd466f6f4d5" - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "events": [ - { - "name": "Visited a Page", - "context": { - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "timestamp": 1609749785, - "attributes": { - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html", - "path": "/rudder-sdk-js/tests/html/script-test.html", - "_identity": { - "userId": "sampleId" - } - } - } - ], - "request_id": "75a9e08b-955a-4dc7-8a39-3f6fba9d7497", - "profile_update": { - "_appcuesId": "86086", - "_updatedAt": "2021-01-04T14:13:05.799+05:30", - "_userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "_currentPageUrl": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html", - "_lastBrowserLanguage": "en-GB", - "userId": "sampleId" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "events": [ - { - "name": "Visited a Page", - "context": { - "url": "https://pagecall.com/testing" - }, - "timestamp": 1609749785, - "attributes": { - "url": "https://pagecall.com/testing", - "name": "page name", - "path": "/testing", - "category": "page category", - "_identity": { - "userId": "sampleId" - } - } - } - ], - "request_id": "397fdf96-daee-46c8-ac38-5d717cd8cabd", - "profile_update": { - "_appcuesId": "86086", - "_updatedAt": "2021-01-04T14:13:05.801+05:30", - "_userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "_currentPageUrl": "https://pagecall.com/testing", - "_lastBrowserLanguage": "en-GB", - "userId": "sampleId" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity", - "headers": { - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "request_id": "397fdf96-daee-46c8-ac38-5d717cd8cabd", - "profile_update": { - "userId": "sampleId", - "_lastBrowserLanguage": "en-GB", - "_updatedAt": "2021-01-04T14:13:05.801+05:30", - "_userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "_currentPageTitle": "properties title", - "_currentPageUrl": "https://pagecall.com/properties_url", - "_appcuesId": "86086" - }, - "events": [ - { - "timestamp": 1609749785, - "attributes": { - "category": "page category", - "name": "page name", - "path": "/testing", - "title": "properties title", - "url": "https://pagecall.com/properties_url", - "_identity": { - "userId": "sampleId" - } - }, - "name": "Visited a Page", - "context": { - "url": "https://pagecall.com/properties_url" - } - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity", - "headers": { - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "request_id": "397fdf96-daee-46c8-ac38-5d717cd8cabd", - "profile_update": { - "userId": "sampleId", - "_lastBrowserLanguage": "en-GB", - "_updatedAt": "2021-01-04T14:13:05.801+05:30", - "_userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36", - "_currentPageTitle": "context title", - "_currentPageUrl": "https://pagecall.com/context_url", - "_appcuesId": "86086" - }, - "events": [ - { - "timestamp": 1609749785, - "attributes": { - "category": "page category", - "name": "page name", - "path": "/testing", - "_identity": { - "userId": "sampleId" - } - }, - "name": "Visited a Page", - "context": { - "url": "https://pagecall.com/context_url" - } - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/sampleId/activity", - "headers": { - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "request_id": "id1", - "events": [ - { - "name": "Viewed a Screen", - "timestamp": 1584003903, - "attributes": { - "name": "MainActivity", - "automatic": true - } - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "User id is absent. Aborting event as userId is mandatory for Appcues" - }, - { - "statusCode": 400, - "error": "Message Type is not present. Aborting message." - }, - { - "statusCode": 400, - "error": "Message type is not supported" - } -] diff --git a/test/__tests__/data/appcues_router_input.json b/test/__tests__/data/appcues_router_input.json deleted file mode 100644 index 345266defe..0000000000 --- a/test/__tests__/data/appcues_router_input.json +++ /dev/null @@ -1,119 +0,0 @@ -[ - { - "message": { - "anonymousId": "33787665-4168-4acc-8df7-17ba79325332", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "6a5f38c0-4e75-4268-a066-2b73fbcad01f", - "originalTimestamp": "2021-01-04T08:25:04.780Z", - "receivedAt": "2021-01-04T13:55:04.799+05:30", - "request_ip": "[::1]", - "rudderId": "79881a62-980a-4d76-89ca-7099440f8c13", - "sentAt": "2021-01-04T08:25:04.781Z", - "timestamp": "2021-01-04T13:55:04.798+05:30", - "type": "identify", - "userId": "onlyUserId" - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "message": { - "anonymousId": "33787665-4168-4acc-8df7-17ba79325332", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.9" - }, - "campaign": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.9" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/rudder-sdk-js/tests/html/script-test.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost:4321/rudder-sdk-js/tests/html/script-test.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "first name": "John", - "last name": "Abraham" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "57494c6a-3c62-4b30-83aa-6e821d37ac75", - "originalTimestamp": "2021-01-04T08:25:04.786Z", - "receivedAt": "2021-01-04T13:55:04.799+05:30", - "request_ip": "[::1]", - "rudderId": "ed2ed08a-3cd9-4b2c-9b04-7e3d3501fab7", - "sentAt": "2021-01-04T08:25:04.787Z", - "timestamp": "2021-01-04T13:55:04.798+05:30", - "type": "identify", - "userId": "userIdWithProperties" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - } -] diff --git a/test/__tests__/data/appcues_router_output.json b/test/__tests__/data/appcues_router_output.json deleted file mode 100644 index b6e853d493..0000000000 --- a/test/__tests__/data/appcues_router_output.json +++ /dev/null @@ -1,75 +0,0 @@ -[ - { - "batchedRequest": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "request_id": "6a5f38c0-4e75-4268-a066-2b73fbcad01f", - "profile_update": {} - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/onlyUserId/activity" - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - }, - { - "batchedRequest": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "request_id": "57494c6a-3c62-4b30-83aa-6e821d37ac75", - "profile_update": { - "last name": "Abraham", - "first name": "John" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.appcues.com/v1/accounts/86086/users/userIdWithProperties/activity" - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accountId": "86086", - "useNativeSDK": false - } - } - } -] diff --git a/test/__tests__/data/attentive_tag_input.json b/test/__tests__/data/attentive_tag_input.json deleted file mode 100644 index 3ed57d1445..0000000000 --- a/test/__tests__/data/attentive_tag_input.json +++ /dev/null @@ -1,1062 +0,0 @@ -[ - { - "message": { - "anonymousId": "4eb021e9-a2af-4926-ae82-fe996d12f3c5", - "channel": "web", - "context": { - "locale": "en-GB", - "traits": { - "email": "a@gmail.com", - "phone": "+16405273911", - "customIdentifiers": [ - { - "name": "string", - "value": "string" - } - ] - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "e108eb05-f6cd-4624-ba8c-568f2e2b3f92", - "receivedAt": "2019-10-14T09:03:17.562Z", - "type": "identify" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "241654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "224" - }, - { - "type": "klaviyoId", - "id": "132" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product,id": "r494", - "quantity": "34", - "variant": "f" - }, - "event": "Order Shipped", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:17.562Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "anonymousId": "4eb021e9-a2af-4926-ae82-fe996d12f3c5", - "channel": "web", - "context": { - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "traits": { - "company": { - "id": "abc123" - }, - "createdAt": "Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)", - "phone": "+16465453911" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36" - }, - "integrations": { - "All": true, - "attentive_tag": { - "signUpSourceId": "241654", - "identifyOperation": "unsubscribe" - } - }, - "messageId": "e108eb05-f6cd-4624-ba8c-568f2e2b3f92", - "receivedAt": "2020-10-16T13:56:14.945+05:30", - "type": "identify" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "241654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Order Completed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": 1 - }, - { - "type": "shopifyId", - "id": 1 - }, - { - "type": "klaviyoId", - "id": 1 - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Product List Viewed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Product Viewed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "224" - }, - { - "type": "klaviyoId", - "id": "132" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34" - }, - "event": "Order Shipped", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": 1 - }, - { - "type": "shopifyId", - "id": 1 - }, - { - "type": "klaviyoId", - "id": 1 - } - ] - }, - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Order Completed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "anonymousId": "4eb021e9-a2af-4926-ae82-fe996d12f3c5", - "channel": "web", - "context": { - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "traits": { - "company": { - "id": "abc123" - }, - "createdAt": "Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)", - "email": "test0@gmail.com", - "phone": "+16465453911" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36" - }, - "integrations": { - "All": true, - "attentive_tag": { - "signUpSourceId": "241654", - "identifyOperation": "subscribe" - } - }, - "messageId": "e108eb05-f6cd-4624-ba8c-568f2e2b3f92", - "receivedAt": "2020-10-16T13:56:14.945+05:30", - "type": "identify" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "241654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Product Viewed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Product Viewed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Product Viewed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "phone": "+16465053911" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - }, - "externalId": [ - { - "type": "clientUserId", - "id": "144" - }, - { - "type": "shopifyId", - "id": "143" - }, - { - "type": "klaviyoId", - "id": "142" - } - ] - }, - "type": "track", - "properties": { - "price": "12", - "curre,ncy": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Order Shipped", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - }, - { - "message": { - "anonymousId": "4eb021e9-a2af-4926-ae82-fe996d12f3c5", - "channel": "web", - "context": { - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "traits": { - "company": { - "id": "abc123" - }, - "createdAt": "Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)", - "email": "test0@gmail.com", - "phone": "+16465453911" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36" - }, - "integrations": { - "All": true, - "attentive_tag": { - "signUpSourceId": "241654" - } - }, - "messageId": "e108eb05-f6cd-4624-ba8c-568f2e2b3f92", - "receivedAt": "2020-10-16T13:56:14.945+05:30", - "type": "identify" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "241654" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "variant": "green", - "price": "19", - "quantity": "2", - "currency": "USD" - } - ] - }, - "event": "Product Viewed", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "240654" - } - } - } -] diff --git a/test/__tests__/data/attentive_tag_output.json b/test/__tests__/data/attentive_tag_output.json deleted file mode 100644 index 83f0d4f101..0000000000 --- a/test/__tests__/data/attentive_tag_output.json +++ /dev/null @@ -1,368 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/subscriptions", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16405273911", - "email": "a@gmail.com" - }, - "signUpSourceId": "241654", - "externalIdentifiers": { - "customIdentifiers": [ - { - "name": "string", - "value": "string" - } - ] - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "[Attentive Tag]:The event name contains characters which is not allowed" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/subscriptions/unsubscribe", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465453911" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/purchase", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "email": "test@rudderstack.com", - "externalIdentifiers": { - "clientUserId": "144", - "shopifyId": "143", - "klaviyoId": "142" - } - }, - "occuredAt": "2019-10-14T09:03:17.562Z", - "items": [ - { - "productId": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "productVariantId": "green", - "quantity": "2", - "price": [ - { - "value": 19, - "currency": "USD" - } - ] - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "[Attentive Tag] :: Event name is not present" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/product-view", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465053911", - "email": "test@rudderstack.com", - "externalIdentifiers": { - "clientUserId": "144", - "shopifyId": "143", - "klaviyoId": "142" - } - }, - "occuredAt": "2019-10-14T09:03:17.562Z", - "items": [ - { - "productId": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "productVariantId": "green", - "quantity": "2", - "price": [ - { - "value": 19, - "currency": "USD" - } - ] - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/product-view", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465053911", - "email": "test@rudderstack.com", - "externalIdentifiers": { - "clientUserId": "144", - "shopifyId": "143", - "klaviyoId": "142" - } - }, - "occuredAt": "2019-10-14T09:03:17.562Z", - "items": [ - { - "productId": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "productVariantId": "green", - "quantity": "2", - "price": [ - { - "value": 19, - "currency": "USD" - } - ] - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/events/custom", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465053911", - "email": "test@rudderstack.com", - "externalIdentifiers": { - "clientUserId": "144", - "shopifyId": "224", - "klaviyoId": "132" - } - }, - "occuredAt": "2019-10-14T09:03:17.562Z", - "properties": { - "price": "12", - "currency": "USD", - "product_id": "r494", - "quantity": "34" - }, - "type": "Order Shipped" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "Message Type is not present. Aborting message." - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/subscriptions", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465453911", - "email": "test0@gmail.com" - }, - "signUpSourceId": "241654" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/product-view", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "externalIdentifiers": { - "clientUserId": "144", - "shopifyId": "143", - "klaviyoId": "142" - } - }, - "occuredAt": "2019-10-14T09:03:17.562Z", - "items": [ - { - "productId": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "productVariantId": "green", - "quantity": "2", - "price": [ - { - "value": 19, - "currency": "USD" - } - ] - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "Missing required value from \"product_id\"" - }, - { - "statusCode": 400, - "error": "Missing required value from \"variant\"" - }, - { - "statusCode": 400, - "error": "[Attentive Tag]:The event name contains characters which is not allowed" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/subscriptions", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465453911", - "email": "test0@gmail.com" - }, - "signUpSourceId": "241654" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/events/ecommerce/product-view", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": {}, - "occuredAt": "2019-10-14T09:03:17.562Z", - "items": [ - { - "productId": "507f1f77bcf86cd799439011", - "name": "MOBILE", - "productVariantId": "green", - "quantity": "2", - "price": [ - { - "value": 19, - "currency": "USD" - } - ] - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } -] diff --git a/test/__tests__/data/attentive_tag_router_input.json b/test/__tests__/data/attentive_tag_router_input.json deleted file mode 100644 index 6c5567b79b..0000000000 --- a/test/__tests__/data/attentive_tag_router_input.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "241654" - } - }, - "metadata": { - "jobId": 1 - }, - "message": { - "anonymousId": "4eb021e9-a2af-4926-ae82-fe996d12f3c5", - "channel": "web", - "context": { - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "traits": { - "company": { - "id": "abc123" - }, - "createdAt": "Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)", - "email": "test0@gmail.com", - "phone": "+16465453911" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36", - "externalId": [ - { - "type": "clientUsrId", - "id": 1 - }, - { - "type": "shopifyId", - "id": 1 - }, - { - "type": "klaviyoId", - "id": 1 - } - ] - }, - "integrations": { - "All": true, - "attentive_tag": { - "signUpSourceId": "241654", - "identifyOperation": "unsubscribe" - } - }, - "messageId": "e108eb05-f6cd-4624-ba8c-568f2e2b3f92", - "receivedAt": "2020-10-16T13:56:14.945+05:30", - "type": "identify" - } - } -] diff --git a/test/__tests__/data/attentive_tag_router_output.json b/test/__tests__/data/attentive_tag_router_output.json deleted file mode 100644 index 0c853e82bf..0000000000 --- a/test/__tests__/data/attentive_tag_router_output.json +++ /dev/null @@ -1,40 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.attentivemobile.com/v1/subscriptions/unsubscribe", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "phone": "+16465453911", - "email": "test0@gmail.com" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "signUpSourceId": "241654" - } - } - } -] diff --git a/test/__tests__/data/autopilot_cdk_output.json b/test/__tests__/data/autopilot_cdk_output.json deleted file mode 100644 index 302872c18a..0000000000 --- a/test/__tests__/data/autopilot_cdk_output.json +++ /dev/null @@ -1,108 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/contact", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "contact": { - "Email": "testmp@rudderstack.com", - "FirstName": "Test Kafka", - "custom": { - "age": 23 - } - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/trigger/00XX/contact/testmp@rudderstack.com", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "property": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - { - "statusCode": 400, - "error": "message type page is not supported" - }, - { - "statusCode": 400, - "error": "Email is required for track calls" - }, - { - "statusCode": 400, - "error": "message Type is not present. Aborting message." - }, - { - "statusCode": 400, - "error": "message type group is not supported" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/contact", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "contact": { - "Email": "abc@rudderstack.com", - "FirstName": "Anuraj" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - { - "statusCode": 400, - "error": "message Type is not present. Aborting message." - }, - { - "statusCode": 400, - "error": "message type group is not supported" - }, - { - "statusCode": 400, - "error": "message type Tals is not supported" - } -] diff --git a/test/__tests__/data/autopilot_input.json b/test/__tests__/data/autopilot_input.json deleted file mode 100644 index d442de2e6d..0000000000 --- a/test/__tests__/data/autopilot_input.json +++ /dev/null @@ -1,796 +0,0 @@ -[ - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "fad9b3fb-5778-4db3-9fb6-7168b554191f", - "originalTimestamp": "2020-04-17T14:42:44.722Z", - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53513", - "sentAt": "2020-04-17T14:42:44.722Z", - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "timestamp": "2020-04-17T20:12:44.758+05:30", - "type": "identify", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "type": "track", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "type": "page", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "type": "track", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "type": "group", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "email": "abc@rudderstack.com", - "firstname": "Anuraj" - }, - - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "integrations": { - "All": true - }, - "originalTimestamp": "2020-04-17T14:42:44.722Z", - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53513", - "sentAt": "2020-04-17T14:42:44.722Z", - "timestamp": "2020-04-17T20:12:44.758+05:30", - "type": "identify", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "email": "abc@rudderstack.com", - "firstname": "Anuraj" - }, - - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "integrations": { - "All": true - }, - "originalTimestamp": "2020-04-17T14:42:44.722Z", - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53513", - "sentAt": "2020-04-17T14:42:44.722Z", - "timestamp": "2020-04-17T20:12:44.758+05:30", - "type": "group", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "cdkEnabled": true, - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "email": "abc@rudderstack.com", - "firstname": "Anuraj" - }, - - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "integrations": { - "All": true - }, - "originalTimestamp": "2020-04-17T14:42:44.722Z", - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53513", - "sentAt": "2020-04-17T14:42:44.722Z", - "timestamp": "2020-04-17T20:12:44.758+05:30", - "type": "Tals", - "userId": "user12345" - } - } -] diff --git a/test/__tests__/data/autopilot_output.json b/test/__tests__/data/autopilot_output.json deleted file mode 100644 index 62d3ae6509..0000000000 --- a/test/__tests__/data/autopilot_output.json +++ /dev/null @@ -1,108 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/contact", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "contact": { - "Email": "testmp@rudderstack.com", - "FirstName": "Test Kafka", - "custom": { - "age": 23 - } - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/trigger/00XX/contact/testmp@rudderstack.com", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "property": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - { - "statusCode": 400, - "error": "message type \"page\" not supported for \"autopilot\"" - }, - { - "statusCode": 400, - "error": "Email is required for track calls" - }, - { - "statusCode": 400, - "error": "\"type\" is a required field and it must be a string" - }, - { - "statusCode": 400, - "error": "message type \"group\" not supported for \"autopilot\"" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/contact", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "contact": { - "Email": "abc@rudderstack.com", - "FirstName": "Anuraj" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - { - "statusCode": 400, - "error": "\"type\" is a required field and it must be a string" - }, - { - "statusCode": 400, - "error": "message type \"group\" not supported for \"autopilot\"" - }, - { - "statusCode": 400, - "error": "message type \"Tals\" not supported for \"autopilot\"" - } -] diff --git a/test/__tests__/data/autopilot_router_input.json b/test/__tests__/data/autopilot_router_input.json deleted file mode 100644 index 9a05da11a6..0000000000 --- a/test/__tests__/data/autopilot_router_input.json +++ /dev/null @@ -1,165 +0,0 @@ -[ - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "metadata": { - "jobId": 1 - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "fad9b3fb-5778-4db3-9fb6-7168b554191f", - "originalTimestamp": "2020-04-17T14:42:44.722Z", - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53513", - "sentAt": "2020-04-17T14:42:44.722Z", - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "timestamp": "2020-04-17T20:12:44.758+05:30", - "type": "identify", - "userId": "user12345" - } - }, - { - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "metadata": { - "jobId": 2 - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "testmp@rudderstack.com", - "firstname": "Test Kafka" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "37b75e61-9bd2-4fb8-91ed-e3a064905f3a", - "originalTimestamp": "2020-04-17T14:42:44.724Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-04-17T20:12:44.758+05:30", - "request_ip": "[::1]:53512", - "sentAt": "2020-04-17T14:42:44.725Z", - "timestamp": "2020-04-17T20:12:44.757+05:30", - "type": "track", - "userId": "user12345" - } - } -] diff --git a/test/__tests__/data/autopilot_router_output.json b/test/__tests__/data/autopilot_router_output.json deleted file mode 100644 index 2c33131d08..0000000000 --- a/test/__tests__/data/autopilot_router_output.json +++ /dev/null @@ -1,125 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/contact", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "contact": { - "Email": "testmp@rudderstack.com", - "FirstName": "Test Kafka", - "custom": { - "age": 23 - } - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.autopilothq.com/v1/trigger/00XX/contact/testmp@rudderstack.com", - "headers": { - "autopilotapikey": "dummyApiKey", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "property": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd" - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "ID": "1afjtc6chkhdeKsXYrNFOzR5D9v", - "Name": "Autopilot", - "DestinationDefinition": { - "ID": "1afjX4MlAucK57Q0ctTVlD27Tvo", - "Name": "AUTOPILOT", - "DisplayName": "Autopilot", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "apiKey": "dummyApiKey", - "customMappings": [ - { - "from": "0001", - "to": "Signup" - } - ], - "triggerId": "00XX" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } -] diff --git a/test/__tests__/data/azure_event_hub_input.json b/test/__tests__/data/azure_event_hub_input.json deleted file mode 100644 index cc2ae736d6..0000000000 --- a/test/__tests__/data/azure_event_hub_input.json +++ /dev/null @@ -1,396 +0,0 @@ -[ - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "Purchase", - "integrations": { - "All": true - }, - "messageId": "ce46866c-6f19-42f0-86cb-18c51863b817", - "originalTimestamp": "2020-05-21T10:23:15.984Z", - "properties": { - "currency": "USD", - "revenue": 100 - }, - "receivedAt": "2020-05-21T15:53:16.013+05:30", - "request_ip": "[::1]:59371", - "sentAt": "2020-05-21T10:23:15.985Z", - "timestamp": "2020-05-21T15:53:16.012+05:30", - "type": "track", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 46, - "messageId": "ce46866c-6f19-42f0-86cb-18c51863b817", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "e02dafb0-9df8-4fa2-becd-f4d8617956a4", - "originalTimestamp": "2020-05-21T10:23:15.975Z", - "properties": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:58616", - "sentAt": "2020-05-21T10:23:15.975Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "page", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 47, - "messageId": "e02dafb0-9df8-4fa2-becd-f4d8617956a4", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "41b62b30-db5d-450c-98ed-cec14ead27cc", - "originalTimestamp": "2020-05-21T10:23:15.979Z", - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59372", - "sentAt": "2020-05-21T10:23:15.979Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "identify", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 48, - "messageId": "41b62b30-db5d-450c-98ed-cec14ead27cc", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track without property", - "integrations": { - "All": true - }, - "messageId": "c409577d-5dd4-430a-8965-a20aed7b9c9e", - "originalTimestamp": "2020-05-21T10:23:15.981Z", - "properties": {}, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59374", - "sentAt": "2020-05-21T10:23:15.981Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "track", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 49, - "messageId": "c409577d-5dd4-430a-8965-a20aed7b9c9e", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "f8b6e882-3186-446a-b589-51eba60930d7", - "originalTimestamp": "2020-05-21T10:23:15.982Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59373", - "sentAt": "2020-05-21T10:23:15.983Z", - "timestamp": "2020-05-21T15:53:16.013+05:30", - "type": "track", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 50, - "messageId": "f8b6e882-3186-446a-b589-51eba60930d7", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - } -] diff --git a/test/__tests__/data/azure_event_hub_output.json b/test/__tests__/data/azure_event_hub_output.json deleted file mode 100644 index 7bac8eca74..0000000000 --- a/test/__tests__/data/azure_event_hub_output.json +++ /dev/null @@ -1,276 +0,0 @@ -[ - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "Purchase", - "integrations": { - "All": true - }, - "messageId": "ce46866c-6f19-42f0-86cb-18c51863b817", - "originalTimestamp": "2020-05-21T10:23:15.984Z", - "properties": { - "currency": "USD", - "revenue": 100 - }, - "receivedAt": "2020-05-21T15:53:16.013+05:30", - "request_ip": "[::1]:59371", - "sentAt": "2020-05-21T10:23:15.985Z", - "timestamp": "2020-05-21T15:53:16.012+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "e02dafb0-9df8-4fa2-becd-f4d8617956a4", - "originalTimestamp": "2020-05-21T10:23:15.975Z", - "properties": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:58616", - "sentAt": "2020-05-21T10:23:15.975Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "page", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "41b62b30-db5d-450c-98ed-cec14ead27cc", - "originalTimestamp": "2020-05-21T10:23:15.979Z", - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59372", - "sentAt": "2020-05-21T10:23:15.979Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "identify", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track without property", - "integrations": { - "All": true - }, - "messageId": "c409577d-5dd4-430a-8965-a20aed7b9c9e", - "originalTimestamp": "2020-05-21T10:23:15.981Z", - "properties": {}, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59374", - "sentAt": "2020-05-21T10:23:15.981Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "f8b6e882-3186-446a-b589-51eba60930d7", - "originalTimestamp": "2020-05-21T10:23:15.982Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59373", - "sentAt": "2020-05-21T10:23:15.983Z", - "timestamp": "2020-05-21T15:53:16.013+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345" - } -] diff --git a/test/__tests__/data/blueshift_input.json b/test/__tests__/data/blueshift_input.json deleted file mode 100644 index 25b643cf53..0000000000 --- a/test/__tests__/data/blueshift_input.json +++ /dev/null @@ -1,1120 +0,0 @@ -[ - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "dataCenter": "standard" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "hardik", - "email": "hardik@rudderstack.com", - "cookie": "1234abcd-efghklkj-1234kfjadslk-34iu123", - "industry": "Education", - "employees": 399, - "plan": "enterprise", - "total billed": 830 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.5" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - } - }, - "type": "group", - "messageId": "e5034df0-a404-47b4-a463-76df99934fea", - "anonymousId": "my-anonymous-id-new", - "userId": "sampleusrRudder7", - "traits": { - "groupType": "company", - "name_trait": "Company", - "value_trait": "Comapny-ABC" - } - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "hardik", - "email": "hardik@rudderstack.com", - "cookie": "1234abcd-efghklkj-1234kfjadslk-34iu123", - "industry": "Education", - "employees": 399, - "plan": "enterprise", - "total billed": 830 - } - }, - "type": "group", - "userId": "rudderstack8", - "groupId": "35838" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "context": { - "ip": "14.5.67.21", - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 3 - }, - "os": { - "name": "Android", - "version": "9" - }, - "network": { - "bluetooth": false, - "carrier": "Android", - "cellular": true, - "wifi": true - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "latitude": "37.7672319", - "longitude": "-122.4021353", - "state": "WB", - "street": "rajnagar" - } - }, - "properties": { - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123" - }, - "messageId": "34abcd-efghijkj-1234kf", - "type": "track", - "event": "identify", - "userId": "sampleusrRudder7" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "type": "track", - "event": "Product Viewed", - "properties": { - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123", - "checkout_id": "C324532", - "order_id": "T1230", - "value": 15.98, - "revenue": 16.98, - "shipping": 3.0, - "coupon": "FY21", - "currency": "INR", - "products": [ - { - "product_id": "product-mixedfruit-jam", - "sku": "sku-1", - "category": "Food", - "name": "Food/Drink", - "brand": "Sample", - "variant": "None", - "price": 10.0, - "quantity": 2, - "currency": "INR", - "position": 1, - "value": 6.0, - "typeOfProduct": "Food", - "url": "https://www.example.com/product/bacon-jam", - "image_url": "https://www.example.com/product/bacon-jam.jpg" - } - ] - }, - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - } - }, - "messageId": "34abcd-efghijkj-1234kf", - "userId": "sampleRudderstack9" - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "type": "track", - "event": "Products Searched", - "properties": { - "description": "Sneaker purchase", - "brand": "Victory Sneakers", - "colors": ["red", "blue"], - "items": [ - { - "text": "New Line Sneakers", - "price": "$ 79.95" - }, - { - "text": "Old Line Sneakers", - "price": "$ 79.95" - }, - { - "text": "Blue Line Sneakers", - "price": "$ 79.95" - } - ], - "name": "Hugh Manbeing", - "userLocation": { - "state": "CO", - "zip": "80202" - } - }, - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - } - }, - "messageId": "34abcd-efghijkj-1234kf", - "userId": "sampleRudderstack9" - }, - { - "destination": { - "Config": { - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "type": "track", - "event": "Product_purchased", - "properties": { - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123" - }, - "messageId": "34abcd-efghijkj-1234kf", - "context": { - "ip": "14.5.67.21", - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 3 - }, - "os": { - "name": "Android", - "version": "9" - }, - "network": { - "bluetooth": false, - "carrier": "Android", - "cellular": true, - "wifi": true - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "latitude": "37.7672319", - "longitude": "-122.4021353", - "state": "WB", - "street": "rajnagar" - } - }, - "userId": "sampleRudderstack9" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "type": "identify", - "event": "Product_purchased", - "properties": { - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123" - }, - "messageId": "34abcd-efghijkj-1234kf", - "context": { - "ip": "14.5.67.21", - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 3 - }, - "os": { - "name": "Android", - "version": "9" - }, - "network": { - "bluetooth": false, - "carrier": "Android", - "cellular": true, - "wifi": true - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "latitude": "37.7672319", - "longitude": "-122.4021353", - "state": "WB", - "street": "rajnagar" - } - }, - "userId": "sampleRudderstack9" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "type": "identify", - "traits": { - "email": "chandan@companyname.com", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "firstname": "James", - "lastname": "Doe", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "msg_push": true, - "msgSms": true, - "msgemail": true, - "msgwhatsapp": false, - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "type": "identify", - "traits": { - "email": "chandan@companyname.com", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "firstname": "James", - "lastname": "Doe", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "msg_push": true, - "msgSms": true, - "msgemail": true, - "msgwhatsapp": false, - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "ip": "0.0.0.0" - }, - "type": "identify", - "traits": { - "email": "chandan@companyname.com", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "firstname": "James", - "lastname": "Doe" - } - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "ip": "0.0.0.0" - }, - "traits": { - "email": "chandan@companyname.com", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "firstname": "James", - "lastname": "Doe" - } - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "ip": "0.0.0.0" - }, - "type": "page", - "traits": { - "email": "chandan@companyname.com", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "firstname": "James", - "lastname": "Doe" - } - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "type": "track", - "event": "Order Completed", - "properties": { - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - }, - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "quantity": "2", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - } - ] - }, - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "userId": "sampleRudderstack11" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "context": { - "ip": "14.5.67.21", - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 3 - }, - "os": { - "name": "Android", - "version": "9" - }, - "network": { - "bluetooth": false, - "carrier": "Android", - "cellular": true, - "wifi": true - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "latitude": "37.7672319", - "longitude": "-122.4021353", - "state": "WB", - "street": "rajnagar" - } - }, - "properties": { - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123" - }, - "messageId": "34abcd-efghijkj-1234kf", - "type": "track", - "event": "Custom Events", - "userId": "sampleusrRudder7" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "type": "track", - "event": "Order 9Completed", - "properties": { - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - }, - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "quantity": "2", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - } - ] - }, - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "userId": "sampleRudderstack11" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "type": "track", - "event": "Order.Completed", - "properties": { - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - }, - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "quantity": "2", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - } - ] - }, - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "userId": "sampleRudderstack11" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "standard" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "type": "group", - "messageId": "e5034jh0-a404-47b4-a463-76df99934kl2", - "userId": "sampleusrRudder1", - "groupId": "group22222", - "traits": { - "name": "hardik", - "email": "hardik@rudderstack.com", - "cookie": "1234abcd-efghklkj-1234kfjadslk-34iu123", - "industry": "Education", - "employees": 399, - "plan": "enterprise", - "total billed": 830, - "gender": "male" - } - } - }, - { - "destination": { - "Config": { - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "dataCenter": "eu" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign" - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Mumbai", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "type": "group", - "messageId": "e5034jh0-a404-47b4-a463-76df99934kl2", - "userId": "sampleusrRudder1", - "groupId": "group22222", - "traits": { - "name": "hardik", - "email": "hardik@rudderstack.com", - "cookie": "1234abcd-efghklkj-1234kfjadslk-34iu123", - "industry": "Education", - "employees": 399, - "plan": "enterprise", - "total billed": 830, - "gender": "male" - } - } - } -] diff --git a/test/__tests__/data/blueshift_output.json b/test/__tests__/data/blueshift_output.json deleted file mode 100644 index 189ad02aa3..0000000000 --- a/test/__tests__/data/blueshift_output.json +++ /dev/null @@ -1,438 +0,0 @@ -[ - { - "statusCode": 400, - "error": "Missing required value from \"groupId\"", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.getblueshift.com/api/v1/event", - "headers": { - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "group_id": "35838", - "customer_id": "rudderstack8", - "email": "hardik@rudderstack.com", - "event": "identify" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "ip": "14.5.67.21", - "event": "identify", - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123", - "os_name": "Android", - "latitude": "37.7672319", - "device_id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "longitude": "-122.4021353", - "event_uuid": "34abcd-efghijkj-1234kf", - "customer_id": "sampleusrRudder7", - "device_idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_type": "Android", - "network_carrier": "Android", - "device_manufacturer": "Google" - }, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=" - }, - "version": "1", - "endpoint": "https://api.getblueshift.com/api/v1/event" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.getblueshift.com/api/v1/event", - "headers": { - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "event": "view", - "device_type": "android", - "device_id": "7e32188a4dab669f", - "device_idfv": "7e32188a4dab669f", - "device_manufacturer": "Google", - "os_name": "Android", - "network_carrier": "Android", - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123", - "checkout_id": "C324532", - "order_id": "T1230", - "value": 15.98, - "revenue": 16.98, - "shipping": 3, - "coupon": "FY21", - "currency": "INR", - "products": [ - { - "product_id": "product-mixedfruit-jam", - "sku": "sku-1", - "category": "Food", - "name": "Food/Drink", - "brand": "Sample", - "variant": "None", - "price": 10, - "quantity": 2, - "currency": "INR", - "position": 1, - "value": 6, - "typeOfProduct": "Food", - "url": "https://www.example.com/product/bacon-jam", - "image_url": "https://www.example.com/product/bacon-jam.jpg" - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.eu.getblueshift.com/api/v1/event", - "headers": { - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "event": "search", - "device_type": "android", - "device_id": "7e32188a4dab669f", - "device_idfv": "7e32188a4dab669f", - "device_manufacturer": "Google", - "os_name": "Android", - "network_carrier": "Android", - "description": "Sneaker purchase", - "brand": "Victory Sneakers", - "colors": ["red", "blue"], - "items": [ - { - "text": "New Line Sneakers", - "price": "$ 79.95" - }, - { - "text": "Old Line Sneakers", - "price": "$ 79.95" - }, - { - "text": "Blue Line Sneakers", - "price": "$ 79.95" - } - ], - "name": "Hugh Manbeing", - "userLocation": { - "state": "CO", - "zip": "80202" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "[BLUESHIFT] event Api Keys required for Authentication.", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "statusCode": 400, - "error": "Missing required value from \"email\"", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.getblueshift.com/api/v1/customers", - "headers": { - "Authorization": "Basic YjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q5MjBlYzFlMmU=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "email": "chandan@companyname.com", - "customer_id": "rudder123", - "phone_number": "92374162212", - "firstname": "James", - "lastname": "Doe", - "gender": "M", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "msg_push": true, - "msgSms": true, - "msgemail": true, - "msgwhatsapp": false, - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "[BLUESHIFT] User API Key required for Authentication.", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.eu.getblueshift.com/api/v1/customers", - "headers": { - "Authorization": "Basic YjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q5MjBlYzFlMmU=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "email": "chandan@companyname.com", - "customer_id": "rudder123", - "phone_number": "92374162212", - "firstname": "James", - "lastname": "Doe", - "gender": "M", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "Message Type is not present. Aborting message.", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "statusCode": 400, - "error": "Message type page not supported", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.eu.getblueshift.com/api/v1/event", - "headers": { - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "customer_id": "sampleRudderstack11", - "event": "purchase", - "device_type": "android", - "device_id": "7e32188a4dab669f", - "device_idfv": "7e32188a4dab669f", - "device_manufacturer": "Google", - "os_name": "Android", - "network_carrier": "Android", - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - }, - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "quantity": "2", - "position": "1", - "category": "Games,Gifts,Entertainment,Toys", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg" - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.eu.getblueshift.com/api/v1/event", - "headers": { - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "customer_id": "sampleusrRudder7", - "event": "Custom_Events", - "device_type": "Android", - "device_id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_manufacturer": "Google", - "os_name": "Android", - "network_carrier": "Android", - "ip": "14.5.67.21", - "latitude": "37.7672319", - "longitude": "-122.4021353", - "event_uuid": "34abcd-efghijkj-1234kf", - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "[Blueshift] Event shouldn't contain period(.), numeric value and contains not more than 64 characters", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "statusCode": 400, - "error": "[Blueshift] Event shouldn't contain period(.), numeric value and contains not more than 64 characters", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - }, - { - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "group_id": "group22222", - "customer_id": "sampleusrRudder1", - "email": "hardik@rudderstack.com", - "device_type": "android", - "device_id": "7e32188a4dab669f", - "device_idfv": "7e32188a4dab669f", - "device_manufacturer": "Google", - "os_name": "Android", - "network_carrier": "Android", - "event_uuid": "e5034jh0-a404-47b4-a463-76df99934kl2", - "cookie": "1234abcd-efghklkj-1234kfjadslk-34iu123", - "event": "identify", - "name": "hardik", - "industry": "Education", - "employees": 399, - "plan": "enterprise", - "total billed": 830, - "gender": "male" - }, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=" - }, - "version": "1", - "endpoint": "https://api.getblueshift.com/api/v1/event" - }, - { - "statusCode": 400, - "error": "[BLUESHIFT] event API Key required for Authentication.", - "statTags": { - "destination": "blueshift", - "stage": "transform", - "scope": "exception" - } - } -] diff --git a/test/__tests__/data/blueshift_router_input.json b/test/__tests__/data/blueshift_router_input.json deleted file mode 100644 index 5401275771..0000000000 --- a/test/__tests__/data/blueshift_router_input.json +++ /dev/null @@ -1,167 +0,0 @@ -[ - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "datacenterEU": false - } - }, - "metadata": { - "jobId": 1 - }, - "message": { - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "hardik", - "email": "hardik@rudderstack.com", - "cookie": "1234abcd-efghklkj-1234kfjadslk-34iu123", - "industry": "Education", - "employees": 399, - "plan": "enterprise", - "total billed": 830 - } - }, - "type": "group", - "userId": "rudderstack8", - "groupId": "35838" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "datacenterEU": false - } - }, - "metadata": { - "jobId": 2 - }, - "message": { - "context": { - "ip": "14.5.67.21", - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 3 - }, - "os": { - "name": "Android", - "version": "9" - }, - "network": { - "bluetooth": false, - "carrier": "Android", - "cellular": true, - "wifi": true - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "latitude": "37.7672319", - "longitude": "-122.4021353", - "state": "WB", - "street": "rajnagar" - } - }, - "properties": { - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123" - }, - "messageId": "34abcd-efghijkj-1234kf", - "type": "track", - "event": "identify", - "userId": "sampleusrRudder7" - } - }, - { - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "datacenterEU": false - } - }, - "metadata": { - "jobId": 3 - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "type": "identify", - "traits": { - "email": "chandan@companyname.com", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "firstname": "James", - "lastname": "Doe", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "msg_push": true, - "msgSms": true, - "msgemail": true, - "msgwhatsapp": false, - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - } -] diff --git a/test/__tests__/data/blueshift_router_output.json b/test/__tests__/data/blueshift_router_output.json deleted file mode 100644 index 669f5014a5..0000000000 --- a/test/__tests__/data/blueshift_router_output.json +++ /dev/null @@ -1,156 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.getblueshift.com/api/v1/event", - "headers": { - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "group_id": "35838", - "customer_id": "rudderstack8", - "email": "hardik@rudderstack.com", - "event": "identify" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "datacenterEU": false - } - } - }, - { - "batchedRequest": { - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "ip": "14.5.67.21", - "event": "identify", - "cookie": "1234abcd-efghijkj-1234kfjadslk-34iu123", - "os_name": "Android", - "latitude": "37.7672319", - "device_id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "longitude": "-122.4021353", - "event_uuid": "34abcd-efghijkj-1234kf", - "customer_id": "sampleusrRudder7", - "device_idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "device_type": "Android", - "network_carrier": "Android", - "device_manufacturer": "Google" - }, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=" - }, - "version": "1", - "endpoint": "https://api.getblueshift.com/api/v1/event" - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "eventApiKey": "efeb4a29aba5e75d99c8a18acd620ec1", - "usersApiKey": "b4a29aba5e75duic8a18acd920ec1e2e", - "datacenterEU": false - } - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.getblueshift.com/api/v1/customers", - "headers": { - "Authorization": "Basic YjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q5MjBlYzFlMmU=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "email": "chandan@companyname.com", - "customer_id": "rudder123", - "phone_number": "92374162212", - "firstname": "James", - "lastname": "Doe", - "gender": "M", - "userId": "rudder123", - "anonymousId": "anon_id", - "name": "James Doe", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "msg_push": true, - "msgSms": true, - "msgemail": true, - "msgwhatsapp": false, - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 3 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "eventApiKey": "a5e75d99c8a18acb4a29abd920ec1e2e", - "usersApiKey": "b4a29aba5e75d99c8a18acd920ec1e2e", - "datacenterEU": false - } - } - } -] diff --git a/test/__tests__/data/branch_input.json b/test/__tests__/data/branch_input.json deleted file mode 100644 index 8e8d2bba5f..0000000000 --- a/test/__tests__/data/branch_input.json +++ /dev/null @@ -1,806 +0,0 @@ -[ - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "ios", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "14.4.1" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "properties": { - "name": "sampath" - }, - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 2 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "identify", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "page", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "watchos" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "properties": { - "name": "sampath" - }, - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "ipados" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "properties": { - "name": "sampath" - }, - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "tvos" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "properties": { - "name": "sampath" - }, - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "ios", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "14.4.1" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "ios", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "ios", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "14.4.1" - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "ios", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "14.4.1" - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "Android", - "attTrackingStatus": 2, - "brand": "testBrand" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 2, - "height": 1794, - "width": 1080 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "identify", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "ios", - "attTrackingStatus": 2, - "brand": "testBrand" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "14.4.1" - }, - "screen": { - "density": 2, - "height": 1794, - "width": 1080 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "identify", - "userId": "sampath" - } - } -] diff --git a/test/__tests__/data/branch_output.json b/test/__tests__/data/branch_output.json deleted file mode 100644 index 8a57bf99d5..0000000000 --- a/test/__tests__/data/branch_output.json +++ /dev/null @@ -1,385 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "branch_key": "", - "name": "ADD_TO_CART", - "content_items": [ - { - "$product_name": "sampath" - } - ], - "user_data": { - "os": "iOS", - "os_version": "14.4.1", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/custom", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "branch_key": "", - "name": "sampath", - "custom_data": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "content_items": [{}], - "user_data": { - "os": "Android", - "os_version": "9", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "android_id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "aaid": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": true, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { "statusCode": 400, "error": "Message type is not supported" }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "content_items": [ - { - "$product_name": "sampath" - } - ], - "user_data": { - "os": "watchos", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "name": "ADD_TO_CART", - - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "content_items": [ - { - "$product_name": "sampath" - } - ], - "user_data": { - "os": "ipados", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "name": "ADD_TO_CART", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "content_items": [ - { - "$product_name": "sampath" - } - ], - "user_data": { - "os": "tvos", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "name": "ADD_TO_CART", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user_data": { - "os": "iOS", - "os_version": "14.4.1", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "name": "ADD_TO_CART", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user_data": { - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "name": "ADD_TO_CART", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user_data": { - "os": "iOS", - "os_version": "14.4.1", - "developer_identity": "sampath", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": false, - "model": "AOSP on IA Emulator", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "name": "ADD_TO_CART", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "statusCode": 400, - "error": "Event name is required", - "statTags": { - "destination": "branch", - "stage": "transform", - "scope": "exception" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/custom", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "custom_data": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "content_items": [{}], - "user_data": { - "os": "Android", - "os_version": "9", - "app_version": "1.0.0", - "model": "AOSP on IA Emulator", - "brand": "testBrand", - "screen_dpi": 2, - "screen_height": 1794, - "screen_width": 1080, - "developer_identity": "sampath", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36", - "android_id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "aaid": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": true - }, - "name": "sampath", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/custom", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "custom_data": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "content_items": [{}], - "user_data": { - "os": "iOS", - "os_version": "14.4.1", - "app_version": "1.0.0", - "model": "AOSP on IA Emulator", - "brand": "testBrand", - "screen_dpi": 2, - "screen_height": 1794, - "screen_width": 1080, - "developer_identity": "sampath", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36", - "idfa": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "idfv": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", - "limit_ad_tracking": true - }, - "name": "sampath", - "branch_key": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - } -] diff --git a/test/__tests__/data/branch_router_input.json b/test/__tests__/data/branch_router_input.json deleted file mode 100644 index 85991e0843..0000000000 --- a/test/__tests__/data/branch_router_input.json +++ /dev/null @@ -1,128 +0,0 @@ -[ - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "metadata": { - "jobId": 1 - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "properties": { - "name": "sampath" - }, - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - }, - "metadata": { - "jobId": 2 - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "iOS", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "identify", - "userId": "sampath" - } - } -] diff --git a/test/__tests__/data/branch_router_output.json b/test/__tests__/data/branch_router_output.json deleted file mode 100644 index a792b17d05..0000000000 --- a/test/__tests__/data/branch_router_output.json +++ /dev/null @@ -1,120 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/standard", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "branch_key": "", - "name": "ADD_TO_CART", - "content_items": [ - { - "$product_name": "sampath" - } - ], - "user_data": { - "os": "iOS", - "os_version": "", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api2.branch.io/v2/event/custom", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "branch_key": "", - "name": "sampath", - "custom_data": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "content_items": [{}], - "user_data": { - "os": "iOS", - "os_version": "", - "app_version": "1.0.0", - "screen_dpi": 2, - "developer_identity": "sampath", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "branchKey": "", - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Branch Metrics", - "ID": "1WTpBSTiL3iAUHUdW7rHT4sawgU", - "Name": "BRANCH" - }, - "Enabled": true, - "ID": "1WTpIHpH7NTBgjeiUPW1kCUgZGI", - "Name": "branch test", - "Transformations": [] - } - } -] diff --git a/test/__tests__/data/campaign_manager.json b/test/__tests__/data/campaign_manager.json deleted file mode 100644 index a16cbada81..0000000000 --- a/test/__tests__/data/campaign_manager.json +++ /dev/null @@ -1,653 +0,0 @@ -[ - { - "description": "Track - batch insert Call", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "profileId": "34245", - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "floodlightActivityId": "456543345245", - "value": "756", - "encryptedUserIdCandidates": ["dfghjbnm"], - "quantity": "455678", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT", - "requestType": "batchinsert" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - } - }, - "destination": { - "Config": { - "profileId": "5343234", - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchinsert", - "headers": { - "Authorization": "Bearer dummyApiToken", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "kind": "dfareporting#conversionsBatchInsertRequest", - "encryptionInfo": { - "kind": "dfareporting#encryptionInfo", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT" - }, - "conversions": [ - { - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "timestampMicros": "1668624722903000", - "floodlightActivityId": "456543345245", - "quantity": "455678", - "value": 756, - "encryptedUserIdCandidates": ["dfghjbnm"], - "limitAdTracking": false, - "childDirectedTreatment": false, - "treatmentForUnderage": false, - "nonPersonalizedAd": false - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track - batch update Call", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "originalTimestamp": "2021-01-04T08:25:04.780Z", - "properties": { - "profileId": "34245", - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "floodlightActivityId": "456543345245", - "value": "756", - "quantity": "455678", - "gclid": "string", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT", - "requestType": "batchupdate" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - } - }, - "destination": { - "Config": { - "profileId": "5343234", - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchupdate", - "headers": { - "Authorization": "Bearer dummyApiToken", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "kind": "dfareporting#conversionsBatchUpdateRequest", - "conversions": [ - { - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "timestampMicros": "1609748704780000", - "floodlightActivityId": "456543345245", - "quantity": "455678", - "value": 756, - "gclid": "string", - "treatmentForUnderage": false, - "nonPersonalizedAd": false - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track - batch insert Call failure", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "profileId": "34245", - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "floodlightActivityId": "456543345245", - "mobileDeviceId": "string", - "value": "756", - "encryptedUserIdCandidates": ["dfghjbnm"], - "quantity": "455678", - "gclid": "string", - "matchId": "string", - "dclid": "string", - "impressionId": "string", - "requestType": "batchinsert" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - } - }, - "destination": { - "Config": { - "profileId": "5343234", - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - } - }, - "output": { - "statusCode": 400, - "error": "[CAMPAIGN MANAGER (DCM)]: If encryptedUserId or encryptedUserIdCandidates is used, provide proper values for properties.encryptionEntityType , properties.encryptionSource and properties.encryptionEntityId", - "statTags": { - "destination": "campaign_manager", - "stage": "transform", - "scope": "exception" - } - } - }, - { - "description": "Track - batch insert Call failure none of gclid, matcId are present", - "input": { - "message": { - "channel": "sources", - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "floodlightActivityId": "456543345245", - "value": "756", - "quantity": "455678", - "requestType": "batchinsert" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - } - }, - "destination": { - "Config": { - "profileId": "5343234", - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - } - }, - "output": { - "statusCode": 400, - "error": "[CAMPAIGN MANAGER (DCM)]: Atleast one of encryptedUserId,encryptedUserIdCandidates, matchId, mobileDeviceId, gclid, dclid, impressionId.", - "statTags": { - "destination": "campaign_manager", - "stage": "transform", - "scope": "exception" - } - } - }, - { - "description": "Track - batch insert Call with only matchId", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "profileId": "34245", - "floodlightConfigurationId": "213123123", - "ordinal": "1", - "floodlightActivityId": "456543345245", - "value": "756", - "quantity": "455678", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT", - "requestType": "batchinsert", - "matchId": "123" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - } - }, - "destination": { - "Config": { - "profileId": "5343234", - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchinsert", - "headers": { - "Authorization": "Bearer dummyApiToken", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "kind": "dfareporting#conversionsBatchInsertRequest", - "conversions": [ - { - "floodlightConfigurationId": "213123123", - "ordinal": "1", - "timestampMicros": "1668624722903000", - "floodlightActivityId": "456543345245", - "quantity": "455678", - "value": 756, - "limitAdTracking": false, - "childDirectedTreatment": false, - "treatmentForUnderage": false, - "nonPersonalizedAd": false, - "matchId": "123" - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track - batch insert Call timestamp in unix", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "originalTimestamp": "1668624722903333", - "properties": { - "profileId": "34245", - "floodlightConfigurationId": "213123123", - "ordinal": "1", - "floodlightActivityId": "456543345245", - "value": "756", - "quantity": "455678", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT", - "requestType": "batchinsert", - "matchId": "123" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - } - }, - "destination": { - "Config": { - "profileId": "5343234", - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchinsert", - "headers": { - "Authorization": "Bearer dummyApiToken", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "kind": "dfareporting#conversionsBatchInsertRequest", - "conversions": [ - { - "floodlightConfigurationId": "213123123", - "ordinal": "1", - "timestampMicros": "1668624722903333", - "floodlightActivityId": "456543345245", - "quantity": "455678", - "value": 756, - "limitAdTracking": false, - "childDirectedTreatment": false, - "treatmentForUnderage": false, - "nonPersonalizedAd": false, - "matchId": "123" - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - } -] diff --git a/test/__tests__/data/campaign_manager_router_input.json b/test/__tests__/data/campaign_manager_router_input.json deleted file mode 100644 index 83f2289431..0000000000 --- a/test/__tests__/data/campaign_manager_router_input.json +++ /dev/null @@ -1,276 +0,0 @@ -[ - { - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - }, - "jobId": 1 - }, - "destination": { - "Config": { - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "Promotion Clicked", - "type": "track", - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "profileId": 437689, - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "quantity": "455678", - "floodlightActivityId": "456543345245", - "value": 7, - "encryptedUserIdCandidates": ["dfghjbnm"], - "limitAdTracking": true, - "childDirectedTreatment": true, - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT", - "requestType": "batchinsert" - }, - "type": "track", - "event": "event test", - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2022-11-17T00:22:02.903+05:30" - } - }, - { - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - }, - "jobId": 2 - }, - "destination": { - "Config": { - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "Promotion Clicked", - "type": "track", - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "profileId": 437689, - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "floodlightActivityId": "456543345245", - "quantity": "455678", - "value": 7, - "encryptedUserIdCandidates": ["dfghjbnm"], - "limitAdTracking": true, - "childDirectedTreatment": true, - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT", - "requestType": "batchupdate" - }, - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2022-11-17T00:22:02.903+05:30" - } - }, - { - "metadata": { - "secret": { - "access_token": "dummyApiToken", - "refresh_token": "efgh5678", - "developer_token": "ijkl91011" - }, - "jobId": 3 - }, - "destination": { - "Config": { - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "id": "0572f78fa49c648e", - "name": "generic_x86_arm", - "type": "Android", - "model": "AOSP on IA Emulator", - "manufacturer": "Google", - "adTrackingEnabled": true, - "advertisingId": "44c97318-9040-4361-8bc7-4eb30f665ca8" - }, - "traits": { - "email": "alex@example.com", - "phone": "+1-202-555-0146", - "firstName": "John", - "lastName": "Gomes", - "city": "London", - "state": "England", - "countryCode": "GB", - "postalCode": "EC3M", - "streetAddress": "71 Cherry Court SOUTHAMPTON SO53 5PD UK" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "Promotion Clicked", - "type": "track", - "originalTimestamp": "2022-11-17T00:22:02.903+05:30", - "properties": { - "profileId": 437689, - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "floodlightActivityId": "456543345245", - "mobileDeviceId": "string", - "value": 7, - "encryptedUserIdCandidates": ["dfghjbnm"], - "gclid": "string", - "matchId": "string", - "dclid": "string", - "quantity": "455678", - "impressionId": "string", - "limitAdTracking": true, - "childDirectedTreatment": true, - "encryptionInfo": { - "kind": "dfareporting#encryptionInfo", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT" - }, - "requestType": "randomValue" - }, - "anonymousId": "randomId", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2022-11-17T00:22:02.903+05:30" - } - } -] diff --git a/test/__tests__/data/campaign_manager_router_output.json b/test/__tests__/data/campaign_manager_router_output.json deleted file mode 100644 index 61c3438ab6..0000000000 --- a/test/__tests__/data/campaign_manager_router_output.json +++ /dev/null @@ -1,156 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/437689/conversions/batchinsert", - "headers": { - "Authorization": "Bearer dummyApiToken", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "kind": "dfareporting#conversionsBatchInsertRequest", - "encryptionInfo": { - "kind": "dfareporting#encryptionInfo", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT" - }, - "conversions": [ - { - "nonPersonalizedAd": false, - "treatmentForUnderage": false, - "timestampMicros": "1668624722903000", - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "quantity": "455678", - "floodlightActivityId": "456543345245", - "value": 7, - "encryptedUserIdCandidates": ["dfghjbnm"], - "limitAdTracking": true, - "childDirectedTreatment": true - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "secret": { - "access_token": "dummyApiToken", - "developer_token": "ijkl91011", - "refresh_token": "efgh5678" - }, - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "childDirectedTreatment": false, - "limitAdTracking": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK", - "treatmentForUnderage": false - } - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/437689/conversions/batchupdate", - "headers": { - "Authorization": "Bearer dummyApiToken", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "kind": "dfareporting#conversionsBatchUpdateRequest", - "encryptionInfo": { - "kind": "dfareporting#encryptionInfo", - "encryptionSource": "AD_SERVING", - "encryptionEntityId": "3564523", - "encryptionEntityType": "DCM_ACCOUNT" - }, - "conversions": [ - { - "nonPersonalizedAd": false, - "treatmentForUnderage": false, - "timestampMicros": "1668624722903000", - "floodlightConfigurationId": "213123123", - "ordinal": "string", - "quantity": "455678", - "floodlightActivityId": "456543345245", - "value": 7, - "encryptedUserIdCandidates": ["dfghjbnm"] - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "secret": { - "access_token": "dummyApiToken", - "developer_token": "ijkl91011", - "refresh_token": "efgh5678" - }, - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "childDirectedTreatment": false, - "limitAdTracking": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK", - "treatmentForUnderage": false - } - } - }, - { - "destination": { - "Config": { - "treatmentForUnderage": false, - "limitAdTracking": false, - "childDirectedTreatment": false, - "nonPersonalizedAd": false, - "rudderAccountId": "2EOknn1JNH7WK1MfNku4fGYKkRK" - } - }, - "batched": false, - "error": "[CAMPAIGN MANAGER (DCM)]: properties.requestType must be one of batchinsert or batchupdate.", - "metadata": [ - { - "secret": { - "access_token": "dummyApiToken", - "developer_token": "ijkl91011", - "refresh_token": "efgh5678" - }, - "jobId": 3 - } - ], - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - } -] diff --git a/test/__tests__/data/candu_input.json b/test/__tests__/data/candu_input.json deleted file mode 100644 index cafe4bbb17..0000000000 --- a/test/__tests__/data/candu_input.json +++ /dev/null @@ -1,938 +0,0 @@ -[ - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "identify", - "sentAt": "2022-01-20T13:39:21.033Z", - "userId": "user123456001", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "831f1fa5-de84-4f22-880a-4c3f23fc3f04", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "track", - "event": "testEventWithoutProp", - "sentAt": "2022-01-20T14:32:51.506Z", - "userId": "user123456001", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "properties": {}, - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T14:32:51.506Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "track", - "sentAt": "2022-01-20T14:42:59.775Z", - "userId": "", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "127.0.0.1:7307" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "1877191c-3537-46dc-a35a-e2a4d13ed3f7", - "messageId": "fea245ef-6150-42c4-84e0-51fa68e71a88", - "properties": {}, - "anonymousId": "d18df757-34aa-4f71-91a8-7f9ef2940963", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T14:42:25.343Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "page", - "sentAt": "2022-01-20T15:30:57.470Z", - "userId": "testUser1234", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "127.0.0.1:7307" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 632 - }, - "traits": {}, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "aa193f3b-6d42-466f-a781-6a666cfe17c3", - "messageId": "bf869c14-5f96-4cbc-94b2-3de9252c216b", - "properties": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "127.0.0.1:7307" - }, - "anonymousId": "d18df757-34aa-4f71-91a8-7f9ef2940963", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T15:30:57.470Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": " " - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "track", - "event": "testEventWithoutProp", - "sentAt": "2022-01-20T14:32:51.506Z", - "userId": "user123456001", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "properties": {}, - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T14:32:51.506Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "event": "testEventWithoutProp", - "sentAt": "2022-01-20T14:32:51.506Z", - "userId": "user123456001", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "properties": {}, - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T14:32:51.506Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "identify", - "sentAt": "2022-01-20T13:39:21.033Z", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female", - "userId": 2399229 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "831f1fa5-de84-4f22-880a-4c3f23fc3f04", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "track", - "event": "testEventWithoutProp", - "sentAt": "2022-01-20T14:32:51.506Z", - "userId": "user123456001", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "properties": ["1234", "5678", "91011"], - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T14:32:51.506Z" - } - }, - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "type": "track", - "event": "testEventWithoutProp", - "sentAt": "2022-01-20T14:32:51.506Z", - "userId": "", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.2.20", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "path": "/Testing/App_for_LaunchDarkly/ourSdk.html", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html", - "referrer": "http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:7307", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1440, - "height": 900, - "density": 2, - "innerWidth": 536, - "innerHeight": 689 - }, - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.2.20" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "properties": [], - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "integrations": { - "All": true - }, - "originalTimestamp": "2022-01-20T14:32:51.506Z" - } - } -] diff --git a/test/__tests__/data/candu_output.json b/test/__tests__/data/candu_output.json deleted file mode 100644 index 5f6ee58825..0000000000 --- a/test/__tests__/data/candu_output.json +++ /dev/null @@ -1,209 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.candu.ai/api/eventWebhook", - "headers": { - "Authorization": "Basic RlhMa0xVRWhHSnl2bVk0", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "type": "identify", - "userId": "user123456001", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "messageId": "831f1fa5-de84-4f22-880a-4c3f23fc3f04", - "context": { - "source": "RudderStack" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.candu.ai/api/eventWebhook", - "headers": { - "Authorization": "Basic RlhMa0xVRWhHSnl2bVk0", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "type": "track", - "event": "testEventWithoutProp", - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "properties": {}, - "userId": "user123456001", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "context": { - "source": "RudderStack" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "statusCode": 400, - "error": "Missing required value from \"event\"", - "statTags": { - "destination": "candu", - "stage": "transform", - "scope": "exception" - } - }, - { - "statusCode": 400, - "error": "[CANDU]:: Message type page not supported.", - "statTags": { - "destination": "candu", - "stage": "transform", - "scope": "exception" - } - }, - { - "statusCode": 400, - "error": "[CANDU]:: apiKey cannot be empty.", - "statTags": { - "destination": "candu", - "stage": "transform", - "scope": "exception" - } - }, - { - "statusCode": 400, - "error": "[CANDU]:: Message Type is not present. Aborting message.", - "statTags": { - "destination": "candu", - "stage": "transform", - "scope": "exception" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.candu.ai/api/eventWebhook", - "headers": { - "Authorization": "Basic RlhMa0xVRWhHSnl2bVk0", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female", - "userId": 2399229 - }, - "userId": "2399229", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "messageId": "831f1fa5-de84-4f22-880a-4c3f23fc3f04", - "type": "identify", - "context": { - "source": "RudderStack" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.candu.ai/api/eventWebhook", - "headers": { - "Authorization": "Basic RlhMa0xVRWhHSnl2bVk0", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "event": "testEventWithoutProp", - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "properties": ["1234", "5678", "91011"], - "userId": "user123456001", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "type": "track", - "context": { - "source": "RudderStack" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.candu.ai/api/eventWebhook", - "headers": { - "Authorization": "Basic RlhMa0xVRWhHSnl2bVk0", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "event": "testEventWithoutProp", - "traits": { - "city": "Pune", - "name": "First User", - "email": "firstUser@testmail.com", - "title": "VP", - "gender": "female" - }, - "properties": [], - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "messageId": "e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e", - "type": "track", - "context": { - "source": "RudderStack" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } -] diff --git a/test/__tests__/data/candu_router_input.json b/test/__tests__/data/candu_router_input.json deleted file mode 100644 index 04eb516327..0000000000 --- a/test/__tests__/data/candu_router_input.json +++ /dev/null @@ -1,105 +0,0 @@ -[ - { - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "FXLkLUEhGJyvmY4" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "metadata": { - "jobId": 1 - }, - "message": { - "anonymousId": "a1b2c3d4e5f6g7h8i9j10", - "channel": "mobile", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "adTrackingEnabled": true, - "advertisingId": "", - "id": "", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "attTrackingStatus": 3 - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "watchos" - }, - "screen": { - "density": 2 - }, - "traits": { - "email": "sampath@gmail.com", - "name": "Joker", - "Gender": "male", - "foo": { - "foo": "bar" - } - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "product added", - "integrations": { - "All": true - }, - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "originalTimestamp": "2020-01-17T04:53:51.185Z", - "receivedAt": "2020-01-17T10:23:52.688+05:30", - "request_ip": "[::1]:64059", - "sentAt": "2020-01-17T04:53:52.667Z", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "type": "identify", - "userId": "sampath" - } - } -] diff --git a/test/__tests__/data/candu_router_output.json b/test/__tests__/data/candu_router_output.json deleted file mode 100644 index ecabcbfa9a..0000000000 --- a/test/__tests__/data/candu_router_output.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.candu.ai/api/eventWebhook", - "headers": { - "Authorization": "Basic RlhMa0xVRWhHSnl2bVk0", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "traits": { - "email": "sampath@gmail.com", - "name": "Joker", - "Gender": "male", - "foo": { "foo": "bar" } - }, - "type": "identify", - "userId": "sampath", - "anonymousId": "a1b2c3d4e5f6g7h8i9j10", - "timestamp": "2020-01-17T10:23:51.206+05:30", - "messageId": "ea5cfab2-3961-4d8a-8187-3d1858c90a9f", - "context": { "source": "RudderStack" } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "ID": "23uZJcllEOBx8GbZ31qYzoML8Up", - "Name": "Candu local", - "DestinationDefinition": { - "ID": "23uYPwdkxT7pUNDAiCVNK3aU0sT", - "Name": "CANDU", - "DisplayName": "Candu", - "Config": { - "destConfig": { "defaultConfig": ["apiKey"] }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "blackListedEvents", - "whiteListedEvents", - "oneTrustCookieCategories" - ], - "saveDestinationResponse": true, - "secretKeys": ["apiKey"], - "supportedMessageTypes": ["identify", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "reactnative", - "flutter", - "cordova" - ], - "transformAt": "router", - "transformAtV1": "router" - }, - "ResponseRules": {} - }, - "Config": { "apiKey": "FXLkLUEhGJyvmY4" }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } -] diff --git a/test/__tests__/data/confluent_cloud_input.json b/test/__tests__/data/confluent_cloud_input.json deleted file mode 100644 index cc2ae736d6..0000000000 --- a/test/__tests__/data/confluent_cloud_input.json +++ /dev/null @@ -1,396 +0,0 @@ -[ - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "Purchase", - "integrations": { - "All": true - }, - "messageId": "ce46866c-6f19-42f0-86cb-18c51863b817", - "originalTimestamp": "2020-05-21T10:23:15.984Z", - "properties": { - "currency": "USD", - "revenue": 100 - }, - "receivedAt": "2020-05-21T15:53:16.013+05:30", - "request_ip": "[::1]:59371", - "sentAt": "2020-05-21T10:23:15.985Z", - "timestamp": "2020-05-21T15:53:16.012+05:30", - "type": "track", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 46, - "messageId": "ce46866c-6f19-42f0-86cb-18c51863b817", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "e02dafb0-9df8-4fa2-becd-f4d8617956a4", - "originalTimestamp": "2020-05-21T10:23:15.975Z", - "properties": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:58616", - "sentAt": "2020-05-21T10:23:15.975Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "page", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 47, - "messageId": "e02dafb0-9df8-4fa2-becd-f4d8617956a4", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "41b62b30-db5d-450c-98ed-cec14ead27cc", - "originalTimestamp": "2020-05-21T10:23:15.979Z", - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59372", - "sentAt": "2020-05-21T10:23:15.979Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "identify", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 48, - "messageId": "41b62b30-db5d-450c-98ed-cec14ead27cc", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track without property", - "integrations": { - "All": true - }, - "messageId": "c409577d-5dd4-430a-8965-a20aed7b9c9e", - "originalTimestamp": "2020-05-21T10:23:15.981Z", - "properties": {}, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59374", - "sentAt": "2020-05-21T10:23:15.981Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "track", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 49, - "messageId": "c409577d-5dd4-430a-8965-a20aed7b9c9e", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - }, - { - "destination": { - "ID": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "Name": "Azure Event Hub", - "DestinationDefinition": { - "ID": "1cCs4qQ72QY8vovP7BlJ47mkjBh", - "Name": "AZURE_EVENT_HUB", - "DisplayName": "Azure Event Hub", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": null, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "f8b6e882-3186-446a-b589-51eba60930d7", - "originalTimestamp": "2020-05-21T10:23:15.982Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59373", - "sentAt": "2020-05-21T10:23:15.983Z", - "timestamp": "2020-05-21T15:53:16.013+05:30", - "type": "track", - "userId": "user-12345" - }, - "metadata": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "destinationId": "1cCz8hts5rp3YWglzhU1GPmVdjE", - "destinationType": "AZURE_EVENT_HUB", - "jobId": 50, - "messageId": "f8b6e882-3186-446a-b589-51eba60930d7", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC" - } - } -] diff --git a/test/__tests__/data/confluent_cloud_output.json b/test/__tests__/data/confluent_cloud_output.json deleted file mode 100644 index 7bac8eca74..0000000000 --- a/test/__tests__/data/confluent_cloud_output.json +++ /dev/null @@ -1,276 +0,0 @@ -[ - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "Purchase", - "integrations": { - "All": true - }, - "messageId": "ce46866c-6f19-42f0-86cb-18c51863b817", - "originalTimestamp": "2020-05-21T10:23:15.984Z", - "properties": { - "currency": "USD", - "revenue": 100 - }, - "receivedAt": "2020-05-21T15:53:16.013+05:30", - "request_ip": "[::1]:59371", - "sentAt": "2020-05-21T10:23:15.985Z", - "timestamp": "2020-05-21T15:53:16.012+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "e02dafb0-9df8-4fa2-becd-f4d8617956a4", - "originalTimestamp": "2020-05-21T10:23:15.975Z", - "properties": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:58616", - "sentAt": "2020-05-21T10:23:15.975Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "page", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "41b62b30-db5d-450c-98ed-cec14ead27cc", - "originalTimestamp": "2020-05-21T10:23:15.979Z", - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59372", - "sentAt": "2020-05-21T10:23:15.979Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "identify", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track without property", - "integrations": { - "All": true - }, - "messageId": "c409577d-5dd4-430a-8965-a20aed7b9c9e", - "originalTimestamp": "2020-05-21T10:23:15.981Z", - "properties": {}, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59374", - "sentAt": "2020-05-21T10:23:15.981Z", - "timestamp": "2020-05-21T15:53:16.014+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345" - }, - { - "message": { - "anonymousId": "d36981e7-6413-4862-9bb9-b8595fb3d0d4", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index7.html", - "referrer": "http://localhost:1111/tests/html/", - "search": "", - "title": "", - "url": "http://localhost:1111/tests/html/index7.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "test@kinesis.com", - "firstname": "Test Kinesis" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36" - }, - "event": "test track with property", - "integrations": { - "All": true - }, - "messageId": "f8b6e882-3186-446a-b589-51eba60930d7", - "originalTimestamp": "2020-05-21T10:23:15.982Z", - "properties": { - "test_prop_1": "test prop", - "test_prop_2": 1232 - }, - "receivedAt": "2020-05-21T15:53:16.014+05:30", - "request_ip": "[::1]:59373", - "sentAt": "2020-05-21T10:23:15.983Z", - "timestamp": "2020-05-21T15:53:16.013+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345" - } -] diff --git a/test/__tests__/data/courier.json b/test/__tests__/data/courier.json deleted file mode 100644 index 36b4567d03..0000000000 --- a/test/__tests__/data/courier.json +++ /dev/null @@ -1,218 +0,0 @@ -[ - { - "description": "Invalid Configuration (missing api key)", - "input": { - "message": { - "type": "track", - "channel": "web", - "event": "Product Added", - "properties": {}, - "context": {}, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "destination": { - "Config": {} - } - }, - "output": { - "error": "apiKey is required" - } - }, - { - "description": "Identify call", - "input": { - "message": { - "context": { - "ip": "8.8.8.8" - }, - "traits": { - "name": "Joe Doe", - "email": "joe@example.com", - "plan": "basic", - "age": 27 - }, - "type": "identify", - "userId": "userIdTest", - "originalTimestamp": "2022-10-17T15:53:10.566+05:30", - "messageId": "8d04cc30-fc15-49bd-901f-c5c3f72a7d82" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - } - } - }, - "output": { - "body": { - "FORM": {}, - "JSON": { - "context": { - "ip": "8.8.8.8" - }, - "traits": { - "name": "Joe Doe", - "email": "joe@example.com", - "plan": "basic", - "age": 27 - }, - "type": "identify", - "userId": "userIdTest", - "originalTimestamp": "2022-10-17T15:53:10.566+05:30", - "messageId": "8d04cc30-fc15-49bd-901f-c5c3f72a7d82" - }, - "JSON_ARRAY": {}, - "XML": {} - }, - "endpoint": "https://api.courier.com/inbound/rudderstack", - "files": {}, - "headers": { - "Content-Type": "application/json", - "Authorization": "Bearer dummyApiKey" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - } - }, - { - "description": "Identify call with traits inside context but not at root level", - "input": { - "message": { - "context": { - "ip": "8.8.8.8", - "traits": { - "name": "Joe Doe", - "email": "joe@example.com", - "plan": "basic", - "age": 27 - } - }, - "type": "identify", - "userId": "userIdTest", - "originalTimestamp": "2022-10-17T15:53:10.566+05:30", - "messageId": "8d04cc30-fc15-49bd-901f-c5c3f72a7d82" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - } - } - }, - "output": { - "body": { - "FORM": {}, - "JSON": { - "context": { - "ip": "8.8.8.8", - "traits": { - "name": "Joe Doe", - "email": "joe@example.com", - "plan": "basic", - "age": 27 - } - }, - "traits": { - "name": "Joe Doe", - "email": "joe@example.com", - "plan": "basic", - "age": 27 - }, - "type": "identify", - "userId": "userIdTest", - "originalTimestamp": "2022-10-17T15:53:10.566+05:30", - "messageId": "8d04cc30-fc15-49bd-901f-c5c3f72a7d82" - }, - "JSON_ARRAY": {}, - "XML": {} - }, - "endpoint": "https://api.courier.com/inbound/rudderstack", - "files": {}, - "headers": { - "Content-Type": "application/json", - "Authorization": "Bearer dummyApiKey" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - } - }, - { - "description": "Identify call without traits", - "input": { - "message": { - "context": { - "ip": "8.8.8.8" - }, - "type": "identify", - "userId": "userIdTest", - "originalTimestamp": "2022-10-17T15:53:10.566+05:30", - "messageId": "8d04cc30-fc15-49bd-901f-c5c3f72a7d82" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - } - } - }, - "output": { - "error": "traits is a required field for identify call" - } - }, - { - "description": "Track call", - "input": { - "message": { - "context": { - "ip": "8.8.8.8" - }, - "event": "trackTest", - "properties": { - "activity": "checkout" - }, - "userId": "userIdTest", - "type": "track", - "messageId": "3c0abc14-96a2-4aed-9dfc-ee463832cc24", - "originalTimestamp": "2022-10-17T15:32:44.202+05:30" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - } - } - }, - "output": { - "body": { - "FORM": {}, - "JSON": { - "context": { - "ip": "8.8.8.8" - }, - "event": "trackTest", - "properties": { - "activity": "checkout" - }, - "userId": "userIdTest", - "type": "track", - "messageId": "3c0abc14-96a2-4aed-9dfc-ee463832cc24", - "originalTimestamp": "2022-10-17T15:32:44.202+05:30" - }, - "JSON_ARRAY": {}, - "XML": {} - }, - "endpoint": "https://api.courier.com/inbound/rudderstack", - "files": {}, - "headers": { - "Content-Type": "application/json", - "Authorization": "Bearer dummyApiKey" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - } - } -] diff --git a/test/__tests__/data/courier_router.json b/test/__tests__/data/courier_router.json deleted file mode 100644 index 882e9c92dd..0000000000 --- a/test/__tests__/data/courier_router.json +++ /dev/null @@ -1,136 +0,0 @@ -[ - { - "input": [ - { - "message": { - "type": "track", - "channel": "web", - "event": "Product Added", - "userId": "test123", - "properties": { - "price": 999, - "quantity": 1 - }, - "context": { - "traits": { - "firstName": "John", - "age": 27 - } - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - } - }, - "metadata": { - "jobId": 1 - } - }, - { - "message": { - "type": "track", - "channel": "web", - "event": "Product Added", - "properties": {}, - "context": {}, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "destination": { - "Config": { - "sdkKey": "test-sdk-key", - "trackKnownUsers": false, - "nonInteraction": false, - "listen": false, - "trackCategorizedPages": true, - "trackNamedPages": true - } - }, - "metadata": { - "jobId": 2 - } - } - ], - "output": [ - { - "batched": false, - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.courier.com/inbound/rudderstack", - "headers": { - "Authorization": "Bearer dummyApiKey", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "type": "track", - "channel": "web", - "event": "Product Added", - "userId": "test123", - "properties": { - "price": 999, - "quantity": 1 - }, - "context": { - "traits": { - "firstName": "John", - "age": 27 - } - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - } - }, - "metadata": [ - { - "jobId": 1 - } - ], - "statusCode": 200 - }, - { - "batched": false, - "error": "apiKey is required", - "metadata": [ - { - "jobId": 2 - } - ], - "statTags": { - "errorCategory": "dataValidation", - "errorType": "configuration" - }, - "statusCode": 400, - "destination": { - "Config": { - "sdkKey": "test-sdk-key", - "trackKnownUsers": false, - "nonInteraction": false, - "listen": false, - "trackCategorizedPages": true, - "trackNamedPages": true - } - } - } - ] - } -] diff --git a/test/__tests__/data/criteo_audience.json b/test/__tests__/data/criteo_audience.json deleted file mode 100644 index fb2cb5eed8..0000000000 --- a/test/__tests__/data/criteo_audience.json +++ /dev/null @@ -1,1307 +0,0 @@ -[ - { - "description": "Adding email audienceType with batching", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com" - }, - { - "madid": "sample_madid", - "email": "alex@email.com" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34894", - "audienceType": "email" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34894/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "email", - "identifiers": [ - "alex@email.com", - "amy@email.com", - "van@email.com", - "alex@email.com", - "amy@email.com" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34894/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "email", - "identifiers": [ - "van@email.com" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Adding and removing madid audienceType with batching", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid" - }, - { - "madid": "sample_madid_1" - }, - { - "madid": "sample_madid_2" - }, - { - "madid": "sample_madid_10" - }, - { - "madid": "sample_madid_13" - }, - { - "madid": "sample_madid_11" - }, - { - "madid": "sample_madid_12" - } - ], - "remove": [ - { - "madid": "sample_madid_3" - }, - { - "madid": "sample_madid_4" - }, - { - "madid": "sample_madid_5" - }, - { - "madid": "sample_madid_6" - }, - { - "madid": "sample_madid_7" - }, - { - "madid": "sample_madid_8" - }, - { - "madid": "sample_madid_9" - } - ] - } - }, - "context": { - "ip": "14.5.67.21" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "madid" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "madid", - "identifiers": [ - "sample_madid", - "sample_madid_1", - "sample_madid_2", - "sample_madid_10", - "sample_madid_13" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "madid", - "identifiers": [ - "sample_madid_11", - "sample_madid_12" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "remove", - "identifierType": "madid", - "identifiers": [ - "sample_madid_3", - "sample_madid_4", - "sample_madid_5", - "sample_madid_6", - "sample_madid_7" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "remove", - "identifierType": "madid", - "identifiers": [ - "sample_madid_8", - "sample_madid_9" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Adding email audienceType", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34894", - "audienceType": "email" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34894/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "email", - "identifiers": [ - "alex@email.com", - "amy@email.com", - "van@email.com" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Adding madid audienceType", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34895", - "audienceType": "madid" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34895/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "madid", - "identifiers": [ - "sample_madid", - "sample_madid_1", - "sample_madid_2" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Adding and removing madid audienceType", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ], - "remove": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "madid" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "madid", - "identifiers": [ - "sample_madid", - "sample_madid_1", - "sample_madid_2" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "remove", - "identifierType": "madid", - "identifiers": [ - "sample_madid" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Adding and removing identityLink audienceType", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ], - "remove": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "identityLink" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "identityLink", - "identifiers": [ - "text.com", - "yahoo.com", - "abc.com" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "remove", - "identifierType": "identityLink", - "identifiers": [ - "text.com" - ], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Adding and removing gum audienceType", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sample_gum1" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sample_gum2" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sample_gum3" - } - ], - "remove": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sample_gum3" - } - ] - } - }, - "context": { - "ip": "14.5.67.21" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "gum", - "gumCallerId": "329739" - }, - "ID": "sample_destinationId" - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "gum", - "identifiers": [ - "sample_gum1", - "sample_gum2", - "sample_gum3" - ], - "internalIdentifiers": false, - "gumCallerId": "329739" - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "remove", - "identifierType": "gum", - "identifiers": [ - "sample_gum3" - ], - "internalIdentifiers": false, - "gumCallerId": "329739" - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Unsupported message type", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "identify", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "sample_destinationId" - } - }, - "output": { - "error": "Event type identify is not supported" - } - }, - { - "description": "Properties is not present in the message", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "sample_destinationId" - }, - "message": { - "type": "audiencelist", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user@27", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "brand": "John Players", - "price": "15000", - "firstName": "Test", - "email": "test@rudderstack.com", - "userId": "user@27" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "2021-01-03T17:02:53.193Z" - } - }, - "output": { - "error": "Message properties is not present. Aborting message." - } - }, - { - "description": "Payload without listData", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "sample_destinationId" - }, - "message": { - "event": "add_to_Cart", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user@27", - "channel": "web", - "properties": { - "brand": "Zara", - "price": "12000" - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "2021-01-03T17:02:53.193Z" - } - }, - "output": { - "error": "listData is not present inside properties. Aborting message." - } - }, - { - "description": "Response is empty", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": {} - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "sample_destinationId" - } - }, - "output": { - "error": "Payload could not be populated" - } - }, - { - "description": "Message type not given", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "sample_destinationId" - }, - "message": { - "event": "add_to_Cart", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user@27", - "channel": "web", - "properties": { - "brand": "Zara", - "price": "12000" - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "2021-01-03T17:02:53.193Z" - } - }, - "output": { - "error": "Message Type is not present. Aborting message." - } - }, - { - "description": "Gum caller ID is not present", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "destination": { - "Config": { - "audienceId": "34893", - "audienceType": "gum" - }, - "ID": "sample_destinationId" - }, - "message": { - "event": "add_to_Cart", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user@27", - "type": "audiencelist", - "channel": "web", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sample_gum1" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sample_gum2" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sample_gum3" - } - ] - }, - "brand": "Zara", - "price": "12000" - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "2021-01-03T17:02:53.193Z" - } - }, - "output": { - "error": "gumCallerId is required for audience type gum" - } - }, - { - "description": "reuqired properties in listData are not present", - "input": { - "metadata": { - "secret": { - "accessToken": "success_access_token" - } - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34894", - "audienceType": "email" - }, - "ID": "sample_destinationId" - } - }, - "output": { - "error": "Required property for email type audience is not available in an object" - } - } -] \ No newline at end of file diff --git a/test/__tests__/data/criteo_audience_router_input.json b/test/__tests__/data/criteo_audience_router_input.json deleted file mode 100644 index 25607ca936..0000000000 --- a/test/__tests__/data/criteo_audience_router_input.json +++ /dev/null @@ -1,111 +0,0 @@ -[ - { - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "iwehr83843" - }, - "metadata": { - "secret": { - "accessToken": "success_access_token" - }, - "jobId": 1 - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - }, - { - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "madid" - }, - "ID": "iwehr83843" - }, - "metadata": { - "secret": { - "accessToken": "success_access_token" - }, - "jobId": 2 - }, - "message": { - "userId": "user 1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_1", - "email": "amy@email.com", - "identityLink": "yahoo.com", - "gum": "sdjfds" - }, - { - "madid": "sample_madid_2", - "email": "van@email.com", - "identityLink": "abc.com", - "gum": "sdjfds" - } - ], - "remove": [ - { - "madid": "sample_madid", - "email": "alex@email.com", - "identityLink": "text.com", - "gum": "sdjfds" - } - ] - } - }, - "context": { - "ip": "14.5.67.21" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - } -] diff --git a/test/__tests__/data/criteo_audience_router_output.json b/test/__tests__/data/criteo_audience_router_output.json deleted file mode 100644 index 6c38b7460b..0000000000 --- a/test/__tests__/data/criteo_audience_router_output.json +++ /dev/null @@ -1,135 +0,0 @@ -[ - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "email", - "identifiers": ["alex@email.com", "amy@email.com", "van@email.com"], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ], - "metadata": [ - { - "jobId": 1, - "secret": { - "accessToken": "success_access_token" - } - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "email" - }, - "ID": "iwehr83843" - } - }, - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "add", - "identifierType": "madid", - "identifiers": ["sample_madid", "sample_madid_1", "sample_madid_2"], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "PATCH", - "endpoint": "https://api.criteo.com/2022-10/audiences/34893/contactlist", - "headers": { - "Authorization": "Bearer success_access_token", - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "type": "ContactlistAmendment", - "attributes": { - "operation": "remove", - "identifierType": "madid", - "identifiers": ["sample_madid"], - "internalIdentifiers": false - } - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ], - "metadata": [ - { - "jobId": 2, - "secret": { - "accessToken": "success_access_token" - } - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "clientId": "abcdef8-f49-4cd6-b4c5-958b3d66d431", - "clientSecret": "sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg", - "audienceId": "34893", - "audienceType": "madid" - }, - "ID": "iwehr83843" - } - } -] diff --git a/test/__tests__/data/customerio_input.json b/test/__tests__/data/customerio_input.json deleted file mode 100644 index f1f2774163..0000000000 --- a/test/__tests__/data/customerio_input.json +++ /dev/null @@ -1,4964 +0,0 @@ -[ - { - "message": { - "type": "track", - "event": { - "Phone": "123456677", - "Lead ID": "abc", - "Lead URL": "https://simplisafe.com/admin/store/leads/19635101/view", - "firstName": "david tenenbaum", - "Pro Install": "Yes", - "Property Type": "Home", - "Last Lead Source": "uyfasauya ", - "Saved System URL": "ihguwivkbjc" - }, - "userId": "", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "version": "x.x.x", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "path": "/rudderstack-sample-site/", - "title": "Keyboard Site", - "search": "", - "referrer": "$direct", - "initial_referrer": "$direct", - "referring_domain": "", - "initial_referring_domain": "" - }, - "locale": "en-US", - "screen": { - "width": 1512, - "height": 982, - "density": 2, - "innerWidth": 347, - "innerHeight": 778 - }, - "traits": { - "name": "john ", - "lead_id": "abc", - "firstName": "doe " - }, - "campaign": {}, - "sessionId": 123456 - }, - "rudderId": "rudder_id", - "timestamp": "2022-12-03T18:37:57.755Z", - "properties": {}, - "receivedAt": "2022-12-03T18:37:57.758Z", - "request_ip": "62.59.170.125", - "anonymousId": "149a7c9f-0778-45f6-b071-d92523cc8738", - "originalTimestamp": "2022-12-03T18:37:57.614Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "type": "identify", - "userId": "cio_1234", - "integrations": { - "All": true - }, - "traits": { - "email": "updated_email@example.com", - "id": "updated-id-value" - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "user_properties": { - "prop1": "val1", - "prop2": "val2" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com", - "dot.name": "Arnab Pal", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "user_properties": { - "prop1": "val1", - "prop2": "val2" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com", - "dot.name": "Arnab Pal", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "user_properties": { - "prop1": "val1", - "prop2": "val2" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "anon-id", - "dot.name": "Arnab Pal", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "user_properties": { - "prop1": "val1", - "prop2": "val2" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com", - "dot.name": "Arnab Pal", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "event": "test track event", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "", - "event": "test track event", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "", - "event": "test track event", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "anonymousId": "7e32188a4dab669f", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.torpedolabs.wynn.wscci.dev", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android", - "token": "abcxyz" - }, - "library": { - "name": "com.rudderlabs.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "event": "Application Installed", - "integrations": { - "All": true - }, - "messageId": "1578564113557-af022c68-429e-4af4-b99b-2b9174056383", - "properties": { - "review_id": "some_review_id", - "product_id": "some_product_id_a", - "rating": 2.0, - "review_body": "Some Review Body" - }, - "userId": "12345", - "originalTimestamp": "2020-01-09T10:01:53.558Z", - "type": "track", - "sentAt": "2020-01-09T10:02:03.257Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "anonymousId": "7e32188a4dab669f", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.torpedolabs.wynn.wscci.dev", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android", - "token": "abcxyz" - }, - "library": { - "name": "com.rudderlabs.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "event": "Application Uninstalled", - "integrations": { - "All": true - }, - "messageId": "1578564113557-af022c68-429e-4af4-b99b-2b9174056383", - "properties": { - "review_id": "some_review_id", - "product_id": "some_product_id_a", - "rating": 2.0, - "review_body": "Some Review Body" - }, - "userId": "12345", - "originalTimestamp": "2020-01-09T10:01:53.558Z", - "type": "track", - "sentAt": "2020-01-09T10:02:03.257Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "event": "Application Uninstalled", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Uninstalled", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Uninstalled", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Opened", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "sample_device_token" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Opened", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "sample_device_token" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Uninstalled", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "user_properties": { - "prop1": "val1", - "prop2": "val2" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "event": "test track event", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "", - "event": "test track event", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "", - "event": "test track event", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "anonymousId": "7e32188a4dab669f", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.torpedolabs.wynn.wscci.dev", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android", - "token": "abcxyz" - }, - "library": { - "name": "com.rudderlabs.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "event": "Application Installed", - "integrations": { - "All": true - }, - "messageId": "1578564113557-af022c68-429e-4af4-b99b-2b9174056383", - "properties": { - "review_id": "some_review_id", - "product_id": "some_product_id_a", - "rating": 2.0, - "review_body": "Some Review Body" - }, - "userId": "12345", - "originalTimestamp": "2020-01-09T10:01:53.558Z", - "type": "track", - "sentAt": "2020-01-09T10:02:03.257Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "anonymousId": "7e32188a4dab669f", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.torpedolabs.wynn.wscci.dev", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android", - "token": "abcxyz" - }, - "library": { - "name": "com.rudderlabs.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "7e32188a4dab669f" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)" - }, - "event": "Application Uninstalled", - "integrations": { - "All": true - }, - "messageId": "1578564113557-af022c68-429e-4af4-b99b-2b9174056383", - "properties": { - "review_id": "some_review_id", - "product_id": "some_product_id_a", - "rating": 2.0, - "review_body": "Some Review Body" - }, - "userId": "12345", - "originalTimestamp": "2020-01-09T10:01:53.558Z", - "type": "track", - "sentAt": "2020-01-09T10:02:03.257Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "event": "Application Uninstalled", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Uninstalled", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "somel" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Installed", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Opened", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "sample_device_token" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Opened", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "mobile", - "context": { - "device": { - "name": "test android", - "id": "sample_device_id", - "model": "some_model_device", - "type": "mobile", - "token": "sample_device_token" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "Application Uninstalled", - "userId": "12345", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "screen", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "screen", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "event": "https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "anonymousId": "dummy-100-anon", - "channel": "mobile", - "context": { - "app": { - "build": "173", - "name": "MyWallSt Debug", - "namespace": "com.rubicoin.Invest", - "version": "6.2" - }, - "device": { - "attTrackingStatus": 0, - "id": "6fdb629d-4f18-4f3e-943a-3f6f482b331e", - "manufacturer": "Apple", - "model": "iPhone", - "name": "Ales' iPhone", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.0.19" - }, - "locale": "en-DE", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "14.8" - }, - "screen": { - "density": 3, - "height": 375, - "width": 812 - }, - "timezone": "Europe/Prague", - "traits": { - "anonymousId": "6fdb629d-4f18-4f3e-943a-3f6f482b331e", - "userId": "6a540d50-c4dc-4694-beca-d16de113a1c4-1618384106.8700438" - } - }, - "event": "Home: Viewed", - "integrations": { - "All": true - }, - "messageId": "1632314412-e724167f-13bd-455b-943d-dd765a7810fe", - "originalTimestamp": "2021-09-22T12:40:12.220Z", - "properties": {}, - "rudderId": "782cdb50-e2b9-45fc-9d22-07fe792dcfba", - "sentAt": "2021-09-22T12:40:14.453Z", - "type": "track", - "userId": "dummy-user-id-100" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "abc", - "apiKey": "xyz" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "dummy-100-anon", - "userId": "dummy-user-id-100", - "integrations": { - "All": true - }, - "traits": { - "email": "test@gmail.com", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "datacenter": "EU", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "sources", - "context": { - "externalId": [ - { - "id": "xaviercharles@hotmail.com", - "identifierType": "email", - "type": "CUSTOMERIO-customers" - } - ], - "mappedToDestination": "true", - "sources": { - "batch_id": "3d6f7aa8-9b70-4759-970d-212e6714ad22", - "job_id": "1zDgnw7ZmHWR7gtY4niHYysL3zS/Syncher", - "job_run_id": "c5shebbh9jqg10k8d21g", - "task_id": "tt_10_rows", - "task_run_id": "c5shebbh9jqg10k8d220", - "version": "release.v1.6.8" - } - }, - "messageId": "d82a45e1-5a27-4c1d-af89-83bdbc6139d0", - "originalTimestamp": "2021-10-27T09:09:56.673Z", - "receivedAt": "2021-10-27T09:09:56.187Z", - "recordId": "3", - "request_ip": "10.1.85.177", - "rudderId": "5b19a81b-df60-4ccd-abf0-fcfe2b7db054", - "sentAt": "2021-10-27T09:09:56.673Z", - "timestamp": "2021-10-27T09:09:56.186Z", - "traits": { - "last_name": "xavier", - "first_name": "charles" - }, - "type": "identify", - "userId": "xaviercharles@hotmail.com" - }, - "destination": { - "ID": "1zgXcyv272oZA8HWqe7zInhJjPL", - "Name": "ere", - "DestinationDefinition": { - "ID": "1iVQr671C0E8MVpzvCEegsLM2J5", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU"], - "web": ["useNativeSDK"] - }, - "excludeKeys": [], - "includeKeys": ["apiKey", "siteID", "datacenterEU"], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative" - ], - "supportsVisualMapper": true, - "transformAt": "processor" - }, - "ResponseRules": null - }, - "Config": { - "apiKey": "a292d85ac36de15fc219", - "datacenter": "US", - "siteID": "eead090ab9e2e35004dc" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - { - "message": { - "channel": "sources", - "context": { - "externalId": [ - { - "id": "xaviercharles", - "identifierType": "id", - "type": "CUSTOMERIO-customers" - } - ], - "mappedToDestination": "true", - "sources": { - "batch_id": "3d6f7aa8-9b70-4759-970d-212e6714ad22", - "job_id": "1zDgnw7ZmHWR7gtY4niHYysL3zS/Syncher", - "job_run_id": "c5shebbh9jqg10k8d21g", - "task_id": "tt_10_rows", - "task_run_id": "c5shebbh9jqg10k8d220", - "version": "release.v1.6.8" - } - }, - "messageId": "d82a45e1-5a27-4c1d-af89-83bdbc6139d0", - "originalTimestamp": "2021-10-27T09:09:56.673Z", - "receivedAt": "2021-10-27T09:09:56.187Z", - "recordId": "3", - "request_ip": "10.1.85.177", - "rudderId": "5b19a81b-df60-4ccd-abf0-fcfe2b7db054", - "sentAt": "2021-10-27T09:09:56.673Z", - "traits": { - "last_name": "xavier", - "first_name": "charles" - }, - "type": "identify", - "userId": "xaviercharles" - }, - "destination": { - "ID": "1zgXcyv272oZA8HWqe7zInhJjPL", - "Name": "ere", - "DestinationDefinition": { - "ID": "1iVQr671C0E8MVpzvCEegsLM2J5", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU"], - "web": ["useNativeSDK"] - }, - "excludeKeys": [], - "includeKeys": ["apiKey", "siteID", "datacenterEU"], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative" - ], - "supportsVisualMapper": true, - "transformAt": "processor" - }, - "ResponseRules": null - }, - "Config": { - "apiKey": "a292d85ac36de15fc219", - "datacenter": "US", - "siteID": "eead090ab9e2e35004dc" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "Application Opened", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "timestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:35:30.556+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "Application Opened", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:39:04.424+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "timestamp": "2022-01-10T20:39:03.955+05:30", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0 - } - }, - "event": "Application Opened", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:41:30.970+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "Application Opened", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:44:52.784+05:30", - "request_ip": "[::1]", - "rudderId": "0aef312c-0dc0-4a49-b613-4f33fb4e9b46", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "Application Opened", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "timestamp": "2022-01-10T10:00:26.513Z", - "receivedAt": "2022-01-10T20:47:36.180+05:30", - "request_ip": "[::1]", - "rudderId": "0aef312c-0dc0-4a49-b613-4f33fb4e9b46", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "device_token_registered", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:49:05.795+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "device_token_registered", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:50:17.090+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "timestamp": "2022-01-10T20:50:16.621+05:30", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0 - } - }, - "event": "device_token_registered", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:52:19.147+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "timestamp": "2022-01-10T20:52:18.678+05:30", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "device_token_registered", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:53:43.680+05:30", - "request_ip": "[::1]", - "rudderId": "0aef312c-0dc0-4a49-b613-4f33fb4e9b46", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "iOS" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - } - }, - "event": "device_token_registered", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "receivedAt": "2022-01-10T20:55:03.845+05:30", - "request_ip": "[::1]", - "rudderId": "0aef312c-0dc0-4a49-b613-4f33fb4e9b46", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "check for ipados apple family and default it to ios", - "message": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "zx_userid_missing", - "namespace": "org.reactjs.native.example.zx-userid-missing", - "version": "1.0" - }, - "device": { - "attTrackingStatus": 0, - "id": "5d727a3e-a72b-4d00-8078-669c1494791d", - "manufacturer": "Apple", - "model": "iPhone", - "name": "iPhone 13", - "token": "deviceToken", - "type": "ipados" - }, - "library": { - "name": "rudder-ios-library", - "version": "1.3.1" - }, - "locale": "en-US", - "network": { - "bluetooth": false, - "carrier": "unavailable", - "cellular": false, - "wifi": true - }, - "os": { - "name": "iOS", - "version": "15.2" - }, - "screen": { - "density": 3, - "height": 390, - "width": 844 - }, - "timezone": "Asia/Kolkata", - "traits": { - "anonymousId": "5d727a3e-a72b-4d00-8078-669c1494791d", - "email": "sofia@gmail.com", - "login_status": "Authenticated", - "name": "Sofia", - "phone_verified": 1, - "selected_city": "", - "selected_lat": 0, - "selected_long": 0, - "selected_neighborhood": "", - "selected_number": "", - "selected_postal_code": "", - "selected_state": "", - "selected_street": "", - "signed_up_for_newsletters": 0 - } - }, - "event": "Application Opened", - "integrations": { - "All": true - }, - "messageId": "1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f", - "originalTimestamp": "2022-01-10T10:00:26.513Z", - "properties": { - "from_background": false - }, - "receivedAt": "2022-01-10T20:41:30.970+05:30", - "request_ip": "[::1]", - "rudderId": "423cdf83-0448-4a99-b14d-36fcc63e6ea0", - "sentAt": "2022-01-10T10:00:26.982Z", - "type": "track", - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "DESAU SAI", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "DESU SAI" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with identify action", - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.0-beta.2" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.0-beta.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" - }, - "groupId": "group@1", - "integrations": { - "All": true - }, - "traits": { - "domainNames": "rudderstack.com", - "email": "help@rudderstack.com", - "name": "rudderstack", - "action": "identify" - }, - "type": "group", - "userId": "user@1" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with delete action", - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.0-beta.2" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.0-beta.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" - }, - "groupId": "group@1", - "integrations": { - "All": true - }, - "traits": { - "domainNames": "rudderstack.com", - "email": "help@rudderstack.com", - "name": "rudderstack", - "action": "delete" - }, - "type": "group", - "userId": "user@1" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with add_relationships action", - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.0-beta.2" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.0-beta.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "email": "test@rudderstack.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" - }, - "groupId": "group@1", - "integrations": { - "All": true - }, - "traits": { - "domainNames": "rudderstack.com", - "email": "help@rudderstack.com", - "name": "rudderstack", - "action": "add_relationships" - }, - "type": "group", - "userId": "user@1" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with delete_relationships action", - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.0-beta.2" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.0-beta.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "email": "test@rudderstack.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" - }, - "groupId": "group@1", - "integrations": { - "All": true - }, - "traits": { - "domainNames": "rudderstack.com", - "email": "help@rudderstack.com", - "name": "rudderstack", - "action": "delete_relationships" - }, - "type": "group", - "userId": "user@1" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with userId and groupId as an integer", - "message": { - "type": "group", - "header": { - "content-type": "application/json; charset=utf-8" - }, - "sentAt": "2023-03-28T09:36:49.882Z", - "traits": { - "city": "Frankfurt", - "name": "rudder test", - "state": "Hessen", - "isFake": true, - "address": "Solmsstraße 83", - "country": "DE", - "website": "http://www.rudderstack.com", - "industry": "Waste and recycling", - "postcode": "60486", - "whiteLabel": "rudderlabs", - "maxNbJobBoards": 2, - "organisationId": 306, - "pricingPackage": "packageExpert", - "dateProTrialEnd": "2022-08-31T00:00:00+00:00", - "isProTrialActive": true, - "datetimeRegistration": "2020-07-01T10:23:41+00:00", - "isPersonnelServiceProvider": false - }, - "userId": 432, - "channel": "server", - "context": { - "library": { - "name": "rudder-analytics-php", - "version": "2.0.1", - "consumer": "LibCurl" - } - }, - "groupId": 306, - "rudderId": "f5b46a12-2dab-4e24-a127-7316eed414fc", - "messageId": "7032394c-e813-4737-bf52-622dbcefe849", - "receivedAt": "2023-03-28T09:36:48.296Z", - "request_ip": "18.195.235.225", - "originalTimestamp": "2023-03-28T09:36:49.882Z" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with userId in email format ", - "message": { - "type": "group", - "header": { - "content-type": "application/json; charset=utf-8" - }, - "sentAt": "2023-03-28T09:36:49.882Z", - "traits": { - "city": "Frankfurt", - "name": "rudder test", - "state": "Hessen", - "isFake": true, - "address": "Solmsstraße 83", - "country": "DE", - "website": "http://www.rudderstack.com", - "industry": "Waste and recycling", - "postcode": "60486", - "whiteLabel": "rudderlabs", - "maxNbJobBoards": 2, - "organisationId": 306, - "pricingPackage": "packageExpert", - "dateProTrialEnd": "2022-08-31T00:00:00+00:00", - "isProTrialActive": true, - "datetimeRegistration": "2020-07-01T10:23:41+00:00", - "isPersonnelServiceProvider": false - }, - "userId": "abc@xyz.com", - "channel": "server", - "context": { - "library": { - "name": "rudder-analytics-php", - "version": "2.0.1", - "consumer": "LibCurl" - } - }, - "groupId": 306, - "rudderId": "f5b46a12-2dab-4e24-a127-7316eed414fc", - "messageId": "7032394c-e813-4737-bf52-622dbcefe849", - "receivedAt": "2023-03-28T09:36:48.296Z", - "request_ip": "18.195.235.225", - "originalTimestamp": "2023-03-28T09:36:49.882Z" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "US", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "description": "successful group call with eu as data center", - "message": { - "type": "group", - "header": { - "content-type": "application/json; charset=utf-8" - }, - "sentAt": "2023-03-28T09:36:49.882Z", - "traits": { - "city": "Frankfurt", - "name": "rudder test", - "state": "Hessen", - "isFake": true, - "address": "Solmsstraße 83", - "country": "DE", - "website": "http://www.rudderstack.com", - "industry": "Waste and recycling", - "postcode": "60486", - "whiteLabel": "rudderlabs", - "maxNbJobBoards": 2, - "organisationId": 306, - "pricingPackage": "packageExpert", - "dateProTrialEnd": "2022-08-31T00:00:00+00:00", - "isProTrialActive": true, - "datetimeRegistration": "2020-07-01T10:23:41+00:00", - "isPersonnelServiceProvider": false - }, - "userId": 432, - "channel": "server", - "context": { - "library": { - "name": "rudder-analytics-php", - "version": "2.0.1", - "consumer": "LibCurl" - } - }, - "groupId": 306, - "rudderId": "f5b46a12-2dab-4e24-a127-7316eed414fc", - "messageId": "7032394c-e813-4737-bf52-622dbcefe849", - "receivedAt": "2023-03-28T09:36:48.296Z", - "request_ip": "18.195.235.225", - "originalTimestamp": "2023-03-28T09:36:49.882Z" - }, - "destination": { - "ID": "23Mi76khsFhY7bh9ZyRcvR3pHDt", - "Name": "Customer IO Dev", - "DestinationDefinition": { - "ID": "23MgSlHXsPLsiH7SbW7IzCP32fn", - "Name": "CUSTOMERIO", - "DisplayName": "Customer IO", - "Config": { - "destConfig": { - "defaultConfig": ["apiKey", "siteID", "datacenterEU", "deviceTokenEventName"], - "web": ["useNativeSDK", "blackListedEvents", "whiteListedEvents"] - }, - "excludeKeys": [], - "includeKeys": [ - "apiKey", - "siteID", - "datacenterEU", - "blackListedEvents", - "whiteListedEvents" - ], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": {} - }, - "Config": { - "apiKey": "ef32c3f60fb98f39ef35", - "datacenter": "EU", - "deviceTokenEventName": "device_token_registered", - "siteID": "c0efdbd20b9fbe24a7e2" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "userId": "12345", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "datacenter": "US", - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - } -] diff --git a/test/__tests__/data/customerio_output.json b/test/__tests__/data/customerio_output.json deleted file mode 100644 index 3a0b45ebb6..0000000000 --- a/test/__tests__/data/customerio_output.json +++ /dev/null @@ -1,1779 +0,0 @@ -[ - { - "message": "Event is a required field and should be a string" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "email": "updated_email@example.com", - "id": "updated-id-value" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/cio_1234", - "userId": "cio_1234", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "message": "apiKey not found in Configs" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "_timestamp": 1571043797, - "anonymous_id": "123456", - "city": "NY", - "state": "CA", - "street": "", - "prop1": "val1", - "prop2": "val2", - "country": "USA", - "postalCode": 712136, - "email": "test@gmail.com", - "dot.name": "Arnab Pal" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/123456", - "userId": "123456", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "message": "userId or email is not present", - "statusCode": 400 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "_timestamp": 1571043797, - "anonymous_id": "123456", - "city": "NY", - "country": "USA", - "dot.name": "Arnab Pal", - "email": "test@gmail.com", - "postalCode": 712136, - "prop1": "val1", - "prop2": "val2", - "state": "CA", - "street": "" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/test@gmail.com", - "userId": "123456", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "page", - "data": { - "url": "www.rudderlabs.com", - "path": "/test", - "search": "abc", - "referrer": "Rudder", - "title": "Test Page" - }, - "timestamp": 1571051718, - "name": "ApplicationLoaded" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "test track event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "test track event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/test@rudderstack.com/events", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "anonymous_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "test track event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/events", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "review_body": "Some Review Body", - "rating": 2, - "review_id": "some_review_id", - "last_used": 1578564113, - "platform": "android", - "id": "abcxyz", - "product_id": "some_product_id_a" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/devices", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/devices/abcxyz", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/devices/somel", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/test@rudderstack.com/devices/somel", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "message": "userId/email or device_token not present", - "statusCode": 400 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "id": "somel", - "last_used": 1571051718, - "platform": "mobile", - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/test@rudderstack.com/devices", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymous_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "name": "Application Installed", - "timestamp": 1571051718, - "type": "event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/events", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "last_used": 1571051718, - "user_time_spent": 50000, - "platform": "mobile", - "id": "somel" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/devices", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "Application Installed" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "Application Opened" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "last_used": 1571051718, - "user_time_spent": 50000, - "platform": "mobile", - "id": "sample_device_token" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/devices", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/devices/sample_device_token", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "_timestamp": 1571043797, - "anonymous_id": "123456", - "city": "NY", - "state": "CA", - "street": "", - "prop1": "val1", - "prop2": "val2", - "country": "USA", - "postalCode": 712136, - "email": "test@gmail.com" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/123456", - "userId": "123456", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "page", - "data": { - "url": "www.rudderlabs.com", - "path": "/test", - "search": "abc", - "referrer": "Rudder", - "title": "Test Page" - }, - "timestamp": 1571051718, - "name": "ApplicationLoaded" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "test track event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "test track event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/test@rudderstack.com/events", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "anonymous_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "test track event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/events", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "review_body": "Some Review Body", - "rating": 2, - "review_id": "some_review_id", - "last_used": 1578564113, - "platform": "android", - "id": "abcxyz", - "product_id": "some_product_id_a" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/devices", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/devices/abcxyz", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/devices/somel", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "message": "userId/email or device_token not present", - "statusCode": 400 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "id": "somel", - "last_used": 1571051718, - "platform": "mobile", - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/test@rudderstack.com/devices", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymous_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "data": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "name": "Application Installed", - "timestamp": 1571051718, - "type": "event" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/events", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "last_used": 1571051718, - "user_time_spent": 50000, - "platform": "mobile", - "id": "somel" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/devices", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "Application Installed" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "event", - "data": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "user_time_spent": 50000 - }, - "timestamp": 1571051718, - "name": "Application Opened" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "device": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "last_used": 1571051718, - "user_time_spent": 50000, - "platform": "mobile", - "id": "sample_device_token" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/devices", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "PUT", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": {}, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track-eu.customer.io/api/v1/customers/12345/devices/sample_device_token", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "DELETE", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/events", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50 - }, - "anonymous_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "name": "https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-s", - "type": "event", - "timestamp": 1571051718 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/customers/test@rudderstack.com/events", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50 - }, - "name": "https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/", - "type": "event", - "timestamp": 1571051718 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/events", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "anonymous_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "name": "Viewed https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-q Screen", - "type": "event", - "timestamp": 1571051718 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/customers/test@rudderstack.com/events", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "name": "Viewed https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/ Screen", - "type": "event", - "timestamp": 1571051718 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/customers/dummy-user-id-100/events", - "headers": { - "Authorization": "Basic YWJjOnh5eg==" - }, - "params": {}, - "body": { - "JSON": { - "data": {}, - "name": "Home: Viewed", - "type": "event", - "timestamp": 1632314412 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "dummy-user-id-100", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track-eu.customer.io/api/v1/customers/dummy-user-id-100", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "", - "email": "test@gmail.com", - "_timestamp": 1571043797, - "anonymous_id": "dummy-100-anon" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "dummy-user-id-100", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/xaviercharles@hotmail.com", - "headers": { - "Authorization": "Basic ZWVhZDA5MGFiOWUyZTM1MDA0ZGM6YTI5MmQ4NWFjMzZkZTE1ZmMyMTk=" - }, - "params": {}, - "body": { - "JSON": { - "last_name": "xavier", - "first_name": "charles", - "email": "xaviercharles@hotmail.com", - "_timestamp": 1635325796 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "xaviercharles@hotmail.com", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/xaviercharles", - "headers": { - "Authorization": "Basic ZWVhZDA5MGFiOWUyZTM1MDA0ZGM6YTI5MmQ4NWFjMzZkZTE1ZmMyMTk=" - }, - "params": {}, - "body": { - "JSON": { - "last_name": "xavier", - "first_name": "charles", - "id": "xaviercharles", - "_timestamp": 1635325796 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "xaviercharles", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/events", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "from_background": false - }, - "name": "Application Opened", - "type": "event", - "timestamp": 1641827343 - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/events", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "from_background": false - }, - "name": "device_token_registered", - "type": "event", - "timestamp": 1641828016 - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641828138 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices", - "headers": { - "Authorization": "Basic REVTVSBTQUk6REVTQVUgU0FJ" - }, - "params": {}, - "body": { - "JSON": { - "device": { - "from_background": false, - "id": "deviceToken", - "platform": "ios", - "last_used": 1641808826 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "e91e0378-63fe-11ec-82ac-0a028ee659c3", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "identify", - "attributes": { - "name": "rudderstack", - "email": "help@rudderstack.com", - "domainNames": "rudderstack.com" - }, - "identifiers": { - "object_id": "group@1", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "user@1" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": "user@1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "delete", - "attributes": { - "name": "rudderstack", - "email": "help@rudderstack.com", - "domainNames": "rudderstack.com" - }, - "identifiers": { - "object_id": "group@1", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "user@1" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": "user@1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "add_relationships", - "attributes": { - "name": "rudderstack", - "email": "help@rudderstack.com", - "domainNames": "rudderstack.com" - }, - "identifiers": { - "object_id": "group@1", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "user@1" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": "user@1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "delete_relationships", - "attributes": { - "name": "rudderstack", - "email": "help@rudderstack.com", - "domainNames": "rudderstack.com" - }, - "identifiers": { - "object_id": "group@1", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "user@1" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": "user@1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "identify", - "attributes": { - "city": "Frankfurt", - "name": "rudder test", - "state": "Hessen", - "isFake": true, - "address": "Solmsstraße 83", - "country": "DE", - "website": "http://www.rudderstack.com", - "industry": "Waste and recycling", - "postcode": "60486", - "whiteLabel": "rudderlabs", - "maxNbJobBoards": 2, - "organisationId": 306, - "pricingPackage": "packageExpert", - "dateProTrialEnd": "2022-08-31T00:00:00+00:00", - "isProTrialActive": true, - "datetimeRegistration": "2020-07-01T10:23:41+00:00", - "isPersonnelServiceProvider": false - }, - "identifiers": { - "object_id": "306", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "432" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": 432, - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "identify", - "attributes": { - "city": "Frankfurt", - "name": "rudder test", - "state": "Hessen", - "isFake": true, - "address": "Solmsstraße 83", - "country": "DE", - "website": "http://www.rudderstack.com", - "industry": "Waste and recycling", - "postcode": "60486", - "whiteLabel": "rudderlabs", - "maxNbJobBoards": 2, - "organisationId": 306, - "pricingPackage": "packageExpert", - "dateProTrialEnd": "2022-08-31T00:00:00+00:00", - "isProTrialActive": true, - "datetimeRegistration": "2020-07-01T10:23:41+00:00", - "isPersonnelServiceProvider": false - }, - "identifiers": { - "object_id": "306", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "email": "abc@xyz.com" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": "abc@xyz.com", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track-eu.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=" - }, - "params": {}, - "body": { - "XML": {}, - "FORM": {}, - "JSON": { - "type": "object", - "action": "identify", - "attributes": { - "city": "Frankfurt", - "name": "rudder test", - "state": "Hessen", - "isFake": true, - "address": "Solmsstraße 83", - "country": "DE", - "website": "http://www.rudderstack.com", - "industry": "Waste and recycling", - "postcode": "60486", - "whiteLabel": "rudderlabs", - "maxNbJobBoards": 2, - "organisationId": 306, - "pricingPackage": "packageExpert", - "dateProTrialEnd": "2022-08-31T00:00:00+00:00", - "isProTrialActive": true, - "datetimeRegistration": "2020-07-01T10:23:41+00:00", - "isPersonnelServiceProvider": false - }, - "identifiers": { - "object_id": "306", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "432" - } - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {}, - "userId": 432, - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "page", - "data": { - "url": "www.rudderlabs.com", - "path": "/test", - "search": "abc", - "referrer": "Rudder", - "title": "Test Page" - }, - "timestamp": 1571051718, - "name": "www.rudderlabs.com" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "page", - "data": { - "path": "/test", - "search": "abc", - "referrer": "Rudder", - "title": "Test Page" - }, - "timestamp": 1571051718 - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "type": "page", - "timestamp": 1571051718 - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "userId": "12345", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - } -] diff --git a/test/__tests__/data/customerio_router_input.json b/test/__tests__/data/customerio_router_input.json deleted file mode 100644 index 68861a1fa0..0000000000 --- a/test/__tests__/data/customerio_router_input.json +++ /dev/null @@ -1,233 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "user_properties": { - "prop1": "val1", - "prop2": "val2" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com", - "dot.name": "Arnab Pal", - "address": { - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.0-beta.2" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.0-beta.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" - }, - "groupId": "group@1", - "integrations": { - "All": true - }, - "traits": { - "domainNames": "rudderstack.com", - "email": "help@rudderstack.com", - "name": "rudderstack", - "action": "identify" - }, - "type": "group", - "userId": "user@1" - }, - "metadata": { - "jobId": 3 - }, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.0-beta.2" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.0-beta.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" - }, - "groupId": "group@1", - "integrations": { - "All": true - }, - "traits": { - "domainNames": "rudderstack.com", - "email": "help@rudderstack.com", - "name": "rudderstack", - "action": "delete" - }, - "type": "group", - "userId": "user@1" - }, - "metadata": { - "jobId": 4 - }, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - } -] diff --git a/test/__tests__/data/customerio_router_output.json b/test/__tests__/data/customerio_router_output.json deleted file mode 100644 index 7208e64cbd..0000000000 --- a/test/__tests__/data/customerio_router_output.json +++ /dev/null @@ -1,175 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "PUT", - "endpoint": "https://track.customer.io/api/v1/customers/123456", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "anonymous_id": "123456", - "city": "NY", - "country": "USA", - "postalCode": 712136, - "state": "CA", - "street": "", - "email": "test@gmail.com", - "dot.name": "Arnab Pal", - "prop1": "val1", - "prop2": "val2", - "_timestamp": 1571043797 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456", - "statusCode": 200 - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v1/customers/12345/events", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=" - }, - "params": {}, - "body": { - "JSON": { - "data": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "name": "ApplicationLoaded", - "type": "page", - "timestamp": 1571051718 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345", - "statusCode": 200 - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://track.customer.io/api/v2/batch", - "headers": { - "Authorization": "Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "FORM": {}, - "XML": {}, - "JSON": { - "batch": [ - { - "type": "object", - "action": "identify", - "attributes": { - "name": "rudderstack", - "email": "help@rudderstack.com", - "domainNames": "rudderstack.com" - }, - "identifiers": { - "object_id": "group@1", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "user@1" - } - } - ] - }, - { - "type": "object", - "action": "delete", - "attributes": { - "name": "rudderstack", - "email": "help@rudderstack.com", - "domainNames": "rudderstack.com" - }, - "identifiers": { - "object_id": "group@1", - "object_type_id": "1" - }, - "cio_relationships": [ - { - "identifiers": { - "id": "user@1" - } - } - ] - } - ] - }, - "JSON_ARRAY": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 3 - }, - { - "jobId": 4 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "datacenterEU": false, - "siteID": "46be54768e7d49ab2628", - "apiKey": "dummyApiKey" - } - } - } -] diff --git a/test/__tests__/data/facebook_conversions.json b/test/__tests__/data/facebook_conversions.json new file mode 100644 index 0000000000..62d0a49c0f --- /dev/null +++ b/test/__tests__/data/facebook_conversions.json @@ -0,0 +1,947 @@ +[ + { + "description": "Timestamp validation. Events must be sent within seven days of their occurrence or up to one minute in the future", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "randomevent", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-09-01T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ] + }, + "Enabled": true + } + }, + "output": { + "error": "Events must be sent within seven days of their occurrence or up to one minute in the future." + } + }, + { + "description": "Track event without event property set", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "error": "'event' is required and should be a string" + } + }, + { + "description": "Simple track event", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "spin_result", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"spin_result\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"value\":400,\"currency\":\"USD\"}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event products searched", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "products searched", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"Search\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"content_ids\":[],\"contents\":[],\"content_type\":\"product\",\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event product added", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "product added", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"AddToCart\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"content_ids\":[],\"contents\":[],\"content_type\":\"product\",\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event product viewed", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "product viewed", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"ViewContent\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"content_ids\":[],\"contents\":[],\"content_type\":\"product\",\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event product list viewed", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "product list viewed", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0, + "products": [ + { + "product_id": 1234, + "quantity": 5, + "price": 55 + } + ] + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"ViewContent\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"products[0].product_id\":1234,\"products[0].quantity\":5,\"products[0].price\":55,\"content_ids\":[1234],\"contents\":[{\"id\":1234,\"quantity\":5,\"item_price\":55}],\"content_type\":\"product\",\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event product list viewed without products array", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "product list viewed", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0, + "category": "randomCategory" + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"ViewContent\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"category\":\"randomCategory\",\"content_ids\":[\"randomCategory\"],\"contents\":[{\"id\":\"randomCategory\",\"quantity\":1}],\"content_type\":\"product_group\",\"content_category\":\"randomCategory\",\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event product added to wishlist", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "product added to wishlist", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"AddToWishlist\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"content_ids\":[],\"contents\":[],\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + }, + { + "description": "Track event with standard event payment info entered", + "input": { + "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", + "channel": "web", + "context": { + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" + }, + "network": { + "carrier": "Banglalink" + }, + "os": { + "name": "android", + "version": "8.1.0" + }, + "screen": { + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" + } + }, + "event": "payment info entered", + "integrations": { + "All": true + }, + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" + }, + "destination": { + "Config": { + "limitedDataUsage": true, + "blacklistPiiProperties": [ + { + "blacklistPiiProperties": "", + "blacklistPiiHash": false + } + ], + "accessToken": "09876", + "datasetId": "dummyID", + "eventsToEvents": [ + { + "from": "", + "to": "" + } + ], + "eventCustomProperties": [ + { + "eventCustomProperties": "" + } + ], + "removeExternalId": true, + "whitelistPiiProperties": [ + { + "whitelistPiiProperties": "" + } + ], + "actionSource": "website" + }, + "Enabled": true + } + }, + "output": { + "version": "1", + "type": "REST", + "method": "POST", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", + "headers": {}, + "params": {}, + "body": { + "JSON": {}, + "XML": {}, + "JSON_ARRAY": {}, + "FORM": { + "data": [ + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"AddPaymentInfo\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"content_ids\":[],\"contents\":[],\"currency\":\"USD\",\"value\":400}}" + ] + } + }, + "files": {} + } + } +] diff --git a/test/__tests__/data/facebook_pixel_router_input.json b/test/__tests__/data/facebook_conversions_router_input.json similarity index 62% rename from test/__tests__/data/facebook_pixel_router_input.json rename to test/__tests__/data/facebook_conversions_router_input.json index 76af88e447..4abe66d3c4 100644 --- a/test/__tests__/data/facebook_pixel_router_input.json +++ b/test/__tests__/data/facebook_conversions_router_input.json @@ -1,12 +1,11 @@ [ { + "metadata": { + "jobId": 1 + }, "message": { "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, + "channel": "web", "context": { "device": { "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", @@ -26,7 +25,10 @@ "density": 50 }, "traits": { - "email": "abc@gmail.com", + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" } }, @@ -39,12 +41,9 @@ "revenue": 400, "additional_bet_index": 0 }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", + "timestamp": "2023-10-15T15:46:51.693229+05:30", "type": "track" }, - "metadata": { - "jobId": 1 - }, "destination": { "Config": { "limitedDataUsage": true, @@ -54,9 +53,8 @@ "blacklistPiiHash": false } ], - "removeExternalId": true, "accessToken": "09876", - "pixelId": "dummyPixelId", + "datasetId": "dummyID", "eventsToEvents": [ { "from": "", @@ -68,69 +66,65 @@ "eventCustomProperties": "" } ], - "valueFieldIdentifier": "", - "advancedMapping": false, + "removeExternalId": true, "whitelistPiiProperties": [ { "whitelistPiiProperties": "" } - ] + ], + "actionSource": "website" }, "Enabled": true } }, { + "metadata": { + "jobId": 2 + }, "message": { + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", "channel": "web", "context": { - "traits": { - "name": "Rudder Test", - "email": "abc@gmail.com", - "firstname": "Test", - "lastname": "Test", - "phone": 9000000000, - "gender": "female" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" + "device": { + "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", + "manufacturer": "Xiaomi", + "model": "Redmi 6", + "name": "xiaomi" }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" + "network": { + "carrier": "Banglalink" }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", "os": { - "name": "", - "version": "" + "name": "android", + "version": "8.1.0" }, "screen": { - "density": 2 + "height": "100", + "density": 50 + }, + "traits": { + "email": " aBc@gmail.com ", + "address": { + "zip": 1234 + }, + "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" } }, - "properties": { - "plan": "standard plan", - "name": "rudder test" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "123456", + "event": "products searched", "integrations": { "All": true }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "metadata": { - "jobId": 2 + "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", + "properties": { + "revenue": 400, + "additional_bet_index": 0 + }, + "timestamp": "2023-10-15T15:46:51.693229+05:30", + "type": "track" }, "destination": { "Config": { + "limitedDataUsage": true, "blacklistPiiProperties": [ { "blacklistPiiProperties": "", @@ -138,7 +132,7 @@ } ], "accessToken": "09876", - "pixelId": "dummyPixelId", + "datasetId": "dummyID", "eventsToEvents": [ { "from": "", @@ -150,13 +144,13 @@ "eventCustomProperties": "" } ], - "valueFieldIdentifier": "", - "advancedMapping": true, + "removeExternalId": true, "whitelistPiiProperties": [ { "whitelistPiiProperties": "" } - ] + ], + "actionSource": "website" }, "Enabled": true } diff --git a/test/__tests__/data/facebook_pixel_router_output.json b/test/__tests__/data/facebook_conversions_router_output.json similarity index 60% rename from test/__tests__/data/facebook_pixel_router_output.json rename to test/__tests__/data/facebook_conversions_router_output.json index d407cd521a..d376a91027 100644 --- a/test/__tests__/data/facebook_pixel_router_output.json +++ b/test/__tests__/data/facebook_conversions_router_output.json @@ -4,7 +4,7 @@ "version": "1", "type": "REST", "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", "headers": {}, "params": {}, "body": { @@ -13,7 +13,7 @@ "JSON_ARRAY": {}, "FORM": { "data": [ - "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"additional_bet_index\":0,\"value\":400}}" + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"spin_result\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"value\":400,\"currency\":\"USD\"}}" ] } }, @@ -35,9 +35,8 @@ "blacklistPiiHash": false } ], - "removeExternalId": true, "accessToken": "09876", - "pixelId": "dummyPixelId", + "datasetId": "dummyID", "eventsToEvents": [ { "from": "", @@ -49,13 +48,13 @@ "eventCustomProperties": "" } ], - "valueFieldIdentifier": "", - "advancedMapping": false, + "removeExternalId": true, "whitelistPiiProperties": [ { "whitelistPiiProperties": "" } - ] + ], + "actionSource": "website" }, "Enabled": true } @@ -65,7 +64,7 @@ "version": "1", "type": "REST", "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", + "endpoint": "https://graph.facebook.com/v17.0/dummyID/events?access_token=09876", "headers": {}, "params": {}, "body": { @@ -74,7 +73,7 @@ "JSON_ARRAY": {}, "FORM": { "data": [ - "{\"user_data\":{\"external_id\":\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"ph\":\"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579\",\"ge\":\"252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111\",\"ln\":\"532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25\",\"fn\":\"2c2ccf28d806f6f9a34b67aa874d2113b7ac1444f1a4092541b8b75b84771747\",\"client_ip_address\":\"0.0.0.0\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"identify\",\"event_time\":1567333011,\"event_id\":\"84e26acc-56a5-4835-8233-591137fca468\",\"action_source\":\"website\"}" + "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"Search\",\"event_time\":1697365011,\"action_source\":\"website\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0,\"content_ids\":[],\"contents\":[],\"content_type\":\"product\",\"currency\":\"USD\",\"value\":400}}" ] } }, @@ -89,6 +88,7 @@ "statusCode": 200, "destination": { "Config": { + "limitedDataUsage": true, "blacklistPiiProperties": [ { "blacklistPiiProperties": "", @@ -96,7 +96,7 @@ } ], "accessToken": "09876", - "pixelId": "dummyPixelId", + "datasetId": "dummyID", "eventsToEvents": [ { "from": "", @@ -108,13 +108,13 @@ "eventCustomProperties": "" } ], - "valueFieldIdentifier": "", - "advancedMapping": true, + "removeExternalId": true, "whitelistPiiProperties": [ { "whitelistPiiProperties": "" } - ] + ], + "actionSource": "website" }, "Enabled": true } diff --git a/test/__tests__/data/facebook_offline_conversions.json b/test/__tests__/data/facebook_offline_conversions.json deleted file mode 100644 index 2e205bc185..0000000000 --- a/test/__tests__/data/facebook_offline_conversions.json +++ /dev/null @@ -1,1393 +0,0 @@ -[ - { - "description": "No Message type", - "input": { - "message": { - "channel": "web", - "context": { - "traits": { - "age": 23, - "email": "adc@test.com", - "firstname": "Test", - "birthday": "2022-05-13T12:51:01.470Z" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "Product Searched", - "originalTimestamp": "2020-09-22T14:42:44.724Z", - "timestamp": "2022-09-22T20:12:44.757+05:30", - "userId": "user@1" - }, - "destination": { - "Config": { - "accessToken": "ABC..." - } - }, - "metadata": { - "secret": { - "access_token": "ABC" - } - } - }, - "output": { - "error": "Message Type is not present. Aborting message." - } - }, - { - "description": "Unsupported Event type", - "input": { - "message": { - "channel": "web", - "context": { - "traits": { - "age": 23, - "email": "adc@test.com", - "firstname": "Test", - "birthday": "2022-05-13T12:51:01.470Z" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "Product Searched", - "type": "identify", - "originalTimestamp": "2020-09-22T14:42:44.724Z", - "timestamp": "2022-09-22T20:12:44.757+05:30", - "userId": "user@1" - }, - "destination": { - "Config": { - "accessToken": "ABC..." - } - } - }, - "output": { - "error": "Message type identify not supported." - } - }, - { - "description": "Event is not mapped with standard event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "abc": "1234" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "product searched", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - }, - { - "from": "AddToWishlist", - "to": "506289934669334" - } - ] - } - } - }, - "output": { - "error": "Please Map Your Standard Events With Event Set Ids" - } - }, - { - "description": "Standard event is not mapped with event set id", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "abc": "1234" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Button Clicked", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ] - } - } - }, - "output": { - "error": "Please Map Your Standard Events With Event Set Ids" - } - }, - { - "description": "Track Call With 1:1 Mapping", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Product Viewed", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Viewed\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "rudderstack" - } - ] - }, - { - "description": "Track Call With 1:M Mapping", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Product Searched", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"Search\",\"content_type\":\"product\"}]", - "upload_tag": "rudderstack" - }, - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"Search\",\"content_type\":\"product\"}]", - "upload_tag": "rudderstack" - } - ] - }, - { - "description": "Track Call With Multiplexing", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Product Searched", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "rudderstack" - }, - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "rudderstack" - }, - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "rudderstack" - } - ] - }, - { - "description": "Track Call With Different Upload Tag And Multiplexing", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Product Searched", - "properties": { - "upload_tag": "test campaign", - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "test campaign" - }, - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "test campaign" - }, - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"order_id\":\"5241735\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Product Searched\",\"event_time\":1663761919,\"currency\":\"GBP\",\"value\":31.98,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"5241735\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"ViewContent\",\"content_type\":\"product\"}]", - "upload_tag": "test campaign" - } - ] - }, - { - "description": "Track Call With All Possible Traits", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com", - "birthday": "2005-01-01T23:28:56.782Z", - "firstName": "test", - "name": "test rudderlabs", - "address": { - "city": "kalkata", - "state": "west bangal", - "country": "india", - "zip": "123456" - }, - "phone": "9886775586", - "gender": "male" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - }, - "device": { - "advertisingId": "apple@123" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Cart Checkout", - "properties": { - "upload_tag": "test campaign", - "order_id": "485893487985894998", - "value": 100, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "IND", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"doby\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobm\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobd\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"phone\":[\"74a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615\"],\"gen\":\"0d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf\",\"fn\":\"9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08\",\"ct\":\"375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0\",\"zip\":[\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\"],\"madid\":\"c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"ln\":\"dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251\"},\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"order_id\":\"485893487985894998\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Cart Checkout\",\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"phone\":\"74a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615\",\"gen\":\"0d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf\",\"fn\":\"9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08\",\"ct\":\"375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0\",\"zip\":\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\",\"madid\":\"c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"485893487985894998\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"ln\":\"dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"AddToCart\",\"content_type\":\"product\"}]", - "upload_tag": "test campaign" - } - ] - }, - { - "description": "Track Call with hashing is disabled", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com", - "birthday": "2005-01-01T23:28:56.782Z", - "firstName": "test", - "name": "test rudderlabs", - "address": { - "city": "kalkata", - "state": "west bangal", - "country": "india", - "zip": "123456" - }, - "phone": "9886775586", - "gender": "male" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - }, - "device": { - "advertisingId": "apple@123" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Cart Checkout", - "properties": { - "upload_tag": "test campaign", - "order_id": "485893487985894998", - "value": 100, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "IND", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": false - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"doby\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobm\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobd\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"extern_id\":\"user@1\",\"email\":[\"test@rudderstack.com\"],\"phone\":[\"9886775586\"],\"gen\":\"male\",\"fn\":\"test\",\"ct\":\"kalkata\",\"zip\":[\"123456\"],\"madid\":\"apple@123\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"ln\":\"rudderlabs\"},\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"order_id\":\"485893487985894998\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Cart Checkout\",\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"email\":\"test@rudderstack.com\",\"phone\":\"9886775586\",\"gen\":\"male\",\"fn\":\"test\",\"ct\":\"kalkata\",\"zip\":\"123456\",\"madid\":\"apple@123\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"485893487985894998\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"ln\":\"rudderlabs\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"AddToCart\",\"content_type\":\"product\"}]", - "upload_tag": "test campaign" - } - ] - }, - { - "description": "Track Call with custom content type", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com", - "birthday": "2005-01-01T23:28:56.782Z", - "firstName": "test", - "name": "test rudderlabs", - "address": { - "city": "kalkata", - "state": "west bangal", - "country": "india", - "zip": "123456" - }, - "phone": "9886775586", - "gender": "male" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - }, - "device": { - "advertisingId": "apple@123" - } - }, - "integrations": { - "FacebookOfflineConversions": { - "contentType": "e-commerce" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Cart Checkout", - "properties": { - "upload_tag": "test campaign", - "order_id": "485893487985894998", - "value": 100, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "IND", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "categoryToContent": [ - { - "from": "", - "to": "" - } - ], - "isHashRequired": true - } - } - }, - "output": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"doby\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobm\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobd\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"phone\":[\"74a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615\"],\"gen\":\"0d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf\",\"fn\":\"9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08\",\"ct\":\"375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0\",\"zip\":[\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\"],\"madid\":\"c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"ln\":\"dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251\"},\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"order_id\":\"485893487985894998\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Cart Checkout\",\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"phone\":\"74a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615\",\"gen\":\"0d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf\",\"fn\":\"9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08\",\"ct\":\"375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0\",\"zip\":\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\",\"madid\":\"c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"485893487985894998\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"ln\":\"dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"AddToCart\",\"content_type\":\"e-commerce\"}]", - "upload_tag": "test campaign" - } - ] - } -] diff --git a/test/__tests__/data/facebook_offline_conversions_router.json b/test/__tests__/data/facebook_offline_conversions_router.json deleted file mode 100644 index e3cbd17951..0000000000 --- a/test/__tests__/data/facebook_offline_conversions_router.json +++ /dev/null @@ -1,664 +0,0 @@ -[ - { - "description": "Router Test Case 1", - "input": [ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "abc": "1234" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "product searched", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - }, - { - "from": "AddToWishlist", - "to": "506289934669334" - } - ], - "isHashRequired": true - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "abc": "1234" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Button Clicked", - "properties": { - "order_id": "5241735", - "value": 31.98, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "GBP", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.2" - }, - "traits": { - "email": "test@rudderstack.com", - "birthday": "2005-01-01T23:28:56.782Z", - "firstName": "test", - "lastName": "rudderstack", - "initial": { - "firstName": "rudderlabs" - }, - "address": { - "city": "kalkata", - "state": "west bangal", - "country": "india", - "zip": "123456" - }, - "phone": "9886775586", - "gender": "male" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.2" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36", - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/ecomm_test.html", - "referrer": "http://0.0.0.0:1112/tests/html/", - "search": "", - "title": "Fb Offline Conversion Ecommerce Test", - "url": "http://0.0.0.0:1112/tests/html/ecomm_test.html" - }, - "device": { - "advertisingId": "apple@123" - } - }, - "type": "track", - "messageId": "9116b734-7e6b-4497-ab51-c16744d4487e", - "originalTimestamp": "2022-09-21T12:05:19.394Z", - "userId": "user@1", - "event": "Cart Checkout", - "properties": { - "upload_tag": "test campaign", - "order_id": "485893487985894998", - "value": 100, - "revenue": 31.98, - "shipping": 4, - "coupon": "APPARELSALE", - "currency": "IND", - "products": [ - { - "id": "product-bacon-jam", - "category": "Merch", - "brand": "" - }, - { - "id": "product-t-shirt", - "category": "Merch", - "brand": "Levis" - }, - { - "id": "offer-t-shirt", - "category": "Merch", - "brand": "Levis" - } - ] - } - }, - "metadata": { - "jobId": 3 - }, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - } - ], - "output": [ - { - "error": "Please Map Your Standard Events With Event Set Ids", - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "configuration" - }, - "statusCode": 400, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - }, - { - "from": "AddToWishlist", - "to": "506289934669334" - } - ], - "isHashRequired": true - } - } - }, - { - "error": "Please Map Your Standard Events With Event Set Ids", - "metadata": [ - { - "jobId": 2 - } - ], - "statTags": { - "errorCategory": "dataValidation", - "errorType": "configuration" - }, - "batched": false, - "statusCode": 400, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Viewed" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - }, - { - "metadata": [ - { - "jobId": 3 - } - ], - "data": [ - { - "access_token": "ABC...", - "data": "[{\"match_keys\":{\"doby\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobm\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"dobd\":\"f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6\",\"extern_id\":\"user@1\",\"email\":[\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\"],\"phone\":[\"74a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615\"],\"gen\":\"0d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf\",\"ln\":\"7fb35d4777487797615cfa7c57724a47ba99152485600ccdb98e3871a6d05b21\",\"fn\":\"9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08\",\"ct\":\"375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0\",\"zip\":[\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\"],\"madid\":\"c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\"},\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"order_id\":\"485893487985894998\",\"contents\":[{\"id\":\"product-bacon-jam\",\"quantity\":1,\"brand\":\"\",\"category\":\"Merch\"},{\"id\":\"product-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"},{\"id\":\"offer-t-shirt\",\"quantity\":1,\"brand\":\"Levis\",\"category\":\"Merch\"}],\"custom_data\":{\"extern_id\":\"user@1\",\"event_name\":\"Cart Checkout\",\"event_time\":1663761919,\"currency\":\"IND\",\"value\":100,\"email\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"phone\":\"74a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615\",\"gen\":\"0d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf\",\"ln\":\"7fb35d4777487797615cfa7c57724a47ba99152485600ccdb98e3871a6d05b21\",\"fn\":\"9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08\",\"ct\":\"375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0\",\"zip\":\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\",\"madid\":\"c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67\",\"contents\":[{\"id\":\"product-bacon-jam\",\"category\":\"Merch\",\"brand\":\"\"},{\"id\":\"product-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"},{\"id\":\"offer-t-shirt\",\"category\":\"Merch\",\"brand\":\"Levis\"}],\"order_id\":\"485893487985894998\",\"upload_tag\":\"test campaign\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\",\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"shipping\":4,\"coupon\":\"APPARELSALE\"},\"event_source_url\":\"http://0.0.0.0:1112/tests/html/ecomm_test.html\",\"event_name\":\"AddToCart\",\"content_type\":\"product\"}]", - "upload_tag": "test campaign" - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accessToken": "ABC...", - "valueFieldIdentifier": "properties.price", - "eventsToStandard": [ - { - "from": "Product Searched", - "to": "Search" - }, - { - "to": "ViewContent", - "from": "Product Searched" - }, - { - "to": "AddToCart", - "from": "Cart Checkout" - }, - { - "to": "AddPaymentInfo", - "from": "Card Details Added" - }, - { - "to": "Lead", - "from": "Order Completed" - }, - { - "to": "CompleteRegistration", - "from": "Signup" - }, - { - "to": "AddToWishlist", - "from": "Button Clicked" - } - ], - "eventsToIds": [ - { - "from": "Search", - "to": "582603376981640" - }, - { - "from": "Search", - "to": "506289934669334" - }, - { - "from": "ViewContent", - "to": "1166826033904512" - }, - { - "from": "AddToCart", - "to": "1148872185708962" - }, - { - "from": "CompleteRegistration", - "to": "597443908839411" - }, - { - "from": "Lead", - "to": "1024592094903800" - } - ], - "isHashRequired": true - } - } - } - ] - } -] diff --git a/test/__tests__/data/facebook_pixel_input.json b/test/__tests__/data/facebook_pixel_input.json deleted file mode 100644 index 9804ad45c8..0000000000 --- a/test/__tests__/data/facebook_pixel_input.json +++ /dev/null @@ -1,4092 +0,0 @@ -[ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "channel": "mobile", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": " aBc@gmail.com ", - "address": { - "zip": 1234 - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUsage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "removeExternalId": true, - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": " aBc@gmail.com ", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "group" - }, - "destination": { - "Config": { - "limitedDataUsage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "traits": { - "name": "Test" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "properties": { - "plan": "standard plan", - "name": "rudder test" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "traits": { - "name": "Rudder Test", - "email": "abc@gmail.com", - "firstname": "Rudder", - "lastname": "Test", - "phone": 9000000000, - "gender": "female" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "properties": { - "plan": "standard plan", - "name": "rudder test" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": true, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "traits": { - "name": "Rudder Test", - "email": "abc@gmail.com", - "phone": 9000000000, - "address": { - "postalCode": 1234 - }, - "gender": "female" - }, - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "properties": { - "plan": "standard plan", - "name": "rudder test" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": true, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0, - "email": "abc@gmail.com" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0, - "email": "abc@gmail.com" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0, - "email": "abc@gmail.com", - "phone": 9000000000 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "phone", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0, - "email": "abc@gmail.com", - "phone": 9000000000 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "phone", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/abc", - "referrer": "xyz", - "search": "def", - "title": "ghi", - "url": "jkl" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "phone", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/abc", - "referrer": "xyz", - "search": "def", - "title": "ghi", - "url": "jkl" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "phone", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product list viewed", - "properties": { - "phone": 9000000000, - "email": "abc@gmail.com", - "category": "cat 1", - "list_id": "1234", - "filters": [ - { - "type": "department", - "value": "beauty" - }, - { - "type": "price", - "value": "under" - } - ], - "sorts": [ - { - "type": "price", - "value": "desc" - } - ], - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "phone", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product list viewed", - "properties": { - "phone": 9000000000, - "email": "abc@gmail.com", - "category": "cat 1", - "list_id": "1234", - "filters": [ - { - "type": "department", - "value": "beauty" - }, - { - "type": "price", - "value": "under" - } - ], - "sorts": [ - { - "type": "price", - "value": "desc" - } - ], - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product list viewed", - "properties": { - "email": "abc@gmail.com", - "quantity": 2, - "category": "cat 1", - "list_id": "1234", - "contentName": "nutrition", - "value": 18.9, - "filters": [ - { - "type": "department", - "value": "beauty" - }, - { - "type": "price", - "value": "under" - } - ], - "sorts": [ - { - "type": "price", - "value": "desc" - } - ], - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "productDimension": "My Product Dimension", - "productMetric": "My Product Metric", - "position": 10 - }, - { - "product_id": "507f1f77bcf86cdef799439011", - "productDimension": "My Product Dimension1", - "productMetric": "My Product Metric1", - "position": -10 - } - ], - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "my product list", - "properties": { - "email": "abc@gmail.com", - "quantity": 2, - "category": "cat 1", - "list_id": "1234", - "filters": [ - { - "type": "department", - "value": "beauty" - }, - { - "type": "price", - "value": "under" - } - ], - "sorts": [ - { - "type": "price", - "value": "desc" - } - ], - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "productDimension": "My Product Dimension", - "productMetric": "My Product Metric", - "position": 10 - }, - { - "product_id": "507f1f77bcf86cdef799439011", - "productDimension": "My Product Dimension1", - "productMetric": "My Product Metric1", - "position": -10 - } - ], - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "removeExternalId": false, - "eventsToEvents": [ - { - "from": "My product list", - "to": "ViewContent" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "list_id" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product viewed", - "properties": { - "currency": "CAD", - "quantity": 1, - "price": 24.75, - "name": "my product 1", - "category": "clothing", - "sku": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "removeExternalId": true, - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product added", - "properties": { - "currency": "CAD", - "quantity": 1, - "value": 24.75, - "category": "cat 1", - "id": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "removeExternalId": false, - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.value", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "order completed", - "properties": { - "order_id": "rudderstackorder1", - "total": 99.99, - "revenue": 12.24, - "shipping": 13.99, - "tax": 20.99, - "currency": "INR", - "contentName": "all about nutrition", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 3, - "price": 24.75, - "name": "other product", - "sku": "p-299" - } - ] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "checkout started", - "properties": { - "currency": "CAD", - "category": "clothing", - "contentName": "abc", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 1, - "price": 24.75, - "name": "my product 2", - "sku": "p-299" - } - ], - "step": 1, - "paymentMethod": "Visa", - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "contentName" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "dataProcessingOptions": [["LDU"], 1, 1000], - "fbc": "fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890", - "fbp": "fb.1.1554763741205.234567890", - "fb_login_id": "fb_id", - "lead_id": "lead_id", - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUSage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "dataProcessingOptions": [["LDU"], 1, 1000], - "fbc": "fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890", - "fbp": "fb.1.1554763741205.234567890", - "fb_login_id": "fb_id", - "lead_id": "lead_id", - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUSage": false, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "products searched", - "properties": { - "product_id": "p-298", - "quantity": 2, - "price": 18.9, - "category": "health", - "value": 18.9, - "query": "HDMI cable" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "products searched", - "properties": { - "query": "HDMI cable" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "testDestination": true, - "testEventCode": "TEST1001", - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/abc", - "referrer": "xyz", - "search": "def", - "title": "ghi", - "url": "jkl" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "standardPageCall": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "phone", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "url" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "email" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "track page", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUsage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "track page", - "to": "PageView" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "additional_bet_index" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "my product list", - "properties": { - "email": "abc@gmail.com", - "quantity": 2, - "category": "cat 1", - "list_id": "1234", - "filters": [ - { - "type": "department", - "value": "beauty" - }, - { - "type": "price", - "value": "under" - } - ], - "sorts": [ - { - "type": "price", - "value": "desc" - } - ], - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "productDimension": "My Product Dimension", - "productMetric": "My Product Metric", - "position": 10 - }, - { - "product_id": "507f1f77bcf86cdef799439011", - "productDimension": "My Product Dimension1", - "productMetric": "My Product Metric1", - "position": -10 - } - ], - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "My product list", - "to": "Schedule" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "list_id" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUsage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product added", - "properties": { - "currency": "CAD", - "quantity": 1, - "value": "35.753", - "category": "cat 1", - "id": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.value", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product added", - "properties": { - "currency": "CAD", - "quantity": 1, - "value": "35.7A3", - "category": "cat 1", - "id": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.value", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product added", - "properties": { - "currency": "CAD", - "quantity": 1, - "value": "ABC", - "category": "cat 1", - "id": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.value", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "order completed", - "properties": { - "category": ["clothing", "fishing"], - "order_id": "rudderstackorder1", - "total": 99.99, - "revenue": 12.24, - "shipping": 13.99, - "tax": 20.99, - "currency": "INR", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 3, - "price": 24.75, - "name": "other product", - "sku": "p-299" - } - ] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "order completed", - "properties": { - "category": 100, - "order_id": "rudderstackorder1", - "total": 99.99, - "revenue": 12.24, - "shipping": 13.99, - "tax": 20.99, - "currency": "INR", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 3, - "price": 24.75, - "name": "other product", - "sku": "p-299" - } - ] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "order completed", - "properties": { - "category": { - "category1": "1" - }, - "order_id": "rudderstackorder1", - "total": 99.99, - "revenue": 12.24, - "shipping": 13.99, - "tax": 20.99, - "currency": "INR", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 3, - "price": 24.75, - "name": "other product", - "sku": "p-299" - } - ] - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUsage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "spin_result", - "to": "Schedule" - }, - { - "to": "Schedule" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "timestamp": "2019-08-24T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "limitedDataUsage": true, - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "spin_result", - "to": "Schedule" - }, - { - "to": "Schedule" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0 - }, - "originalTimestamp": "2019-04-16T15:50:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "accessToken": "validToken", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": true, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "products searched", - "properties": { - "query": { - "key1": "HDMI cable" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "products searched", - "properties": { - "query": 50 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "url": "https://theminimstory.com/collections/summer-of-pearls?utm_source=facebook&utm_medium=paidsocial&utm_campaign=carousel&utm_content=ad1-jul&fbclid=IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI" - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "checkout started", - "properties": { - "currency": "CAD", - "category": "clothing", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 1, - "price": 24.75, - "name": "my product 2", - "sku": "p-299" - } - ], - "step": 1, - "paymentMethod": "Visa", - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "url": "https://theminimstory.com/collections/summer-of-pearls?utm_source=facebook&utm_medium=paidsocial&utm_campaign=carousel&utm_content=ad1-jul&fbclid=IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI" - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": { - "name": "checkout started" - }, - "properties": { - "currency": "CAD", - "category": "clothing", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 1, - "price": 24.75, - "name": "my product 2", - "sku": "p-299" - } - ], - "step": 1, - "paymentMethod": "Visa", - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "url": "url in wrong format" - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "checkout started", - "properties": { - "currency": "CAD", - "category": "clothing", - "products": [ - { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - }, - { - "quantity": 1, - "price": 24.75, - "name": "my product 2", - "sku": "p-299" - } - ], - "step": 1, - "paymentMethod": "Visa", - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product viewed", - "properties": { - "currency": "CAD", - "quantity": 1, - "price": 24.75, - "name": "my product 1", - "category": "clothing", - "sku": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true, - "Facebook_Pixel": { - "contentType": "sending dedicated content type for this particular payload" - } - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "removeExternalId": true, - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product viewed", - "properties": { - "currency": "CAD", - "quantity": 1, - "price": 24.75, - "value": 18.9, - "name": "my product 1", - "category": "clothing", - "sku": "p-298", - "testDimension": true, - "testMetric": true, - "position": 4.5 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "removeExternalId": true, - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.value", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "order completed", - "properties": { - "order_id": "rudderstackorder1", - "total": 99.99, - "revenue": 12.24, - "shipping": 13.99, - "tax": 20.99, - "currency": "INR", - "contentName": "all about nutrition", - "products": { - "quantity": 1, - "price": 24.75, - "name": "my product", - "sku": "p-298" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "categoryToContent": [ - { - "from": "clothing", - "to": "product" - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "product list viewed", - "properties": { - "email": "abc@gmail.com", - "quantity": 2, - "category": "cat 1", - "list_id": "1234", - "contentName": "nutrition", - "value": 18.9, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "productDimension": "My Product Dimension", - "productMetric": "My Product Metric", - "position": 10 - }, - [ - { - "product_id": "507f1f77bcf86cdef799439011", - "productDimension": "My Product Dimension1", - "productMetric": "My Product Metric1", - "position": -10 - } - ] - ], - "testDimension": true, - "testMetric": true - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "accessToken": "09876", - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "eventCustomProperties": [ - { - "eventCustomProperties": "" - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "custom", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "pixelId": "dummyPixelId", - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "custom", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": true - } - ], - "valueFieldIdentifier": "", - "advancedMapping": false, - "whitelistPiiProperties": [ - { - "whitelistPiiProperties": "" - } - ] - }, - "Enabled": true - } - }, - { - "metadata": { - "jobId": 12 - }, - "destination": { - "secretConfig": {}, - "Config": { - "blacklistPiiProperties": [ - { - "blacklistPiiProperties": "", - "blacklistPiiHash": false - } - ], - "pixelId": "dummyPixelId", - "eventsToEvents": [ - { - "from": "", - "to": "" - } - ], - "valueFieldIdentifier": "properties.price", - "advancedMapping": false, - "whitelistPiiProperties": [], - "limitedDataUSage": false, - "accessToken": "dummyAccessToken", - "testDestination": false, - "testEventCode": "", - "standardPageCall": false, - "blacklistedEvents": [], - "whitelistedEvents": [], - "eventFilteringOption": "disable", - "removeExternalId": false, - "useUpdatedMapping": false, - "oneTrustCookieCategories": [], - "useNativeSDK": false, - "eventDelivery": false, - "eventDeliveryTS": 1686748039135 - }, - "liveEventsConfig": { - "eventDelivery": false, - "eventDeliveryTS": 1686748039135 - }, - "id": "destId1", - "workspaceId": "wsp2", - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true, - "name": "san-fb_pixel", - "enabled": true, - "deleted": false, - "createdAt": "2023-06-06T13:36:08.579Z", - "updatedAt": "2023-06-14T13:07:19.136Z", - "revisionId": "revId2", - "secretVersion": 3 - }, - "message": { - "type": "page", - "sentAt": "2019-09-01T15:46:51.000Z", - "userId": "user@19", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "version": "dev-snapshot", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "http://127.0.0.1:8888/", - "path": "/", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:8888/", - "referrer": "http://127.0.0.1:8888/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:8888", - "initial_referring_domain": "" - }, - "locale": "en-GB", - "screen": { - "width": 1728, - "height": 1117, - "density": 2, - "innerWidth": 547, - "innerHeight": 915 - }, - "traits": { - "name": false, - "source": "rudderstack" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "dev-snapshot" - }, - "campaign": {}, - "sessionId": 1687769234506, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" - }, - "rudderId": "6bbfd003-c074-4ee9-8674-c132ded9ff04", - "timestamp": "2019-09-01T15:46:51.000Z", - "properties": { - "url": "http://127.0.0.1:8888/", - "path": "/", - "title": "Document", - "search": "", - "tab_url": "http://127.0.0.1:8888/", - "referrer": "http://127.0.0.1:8888/", - "initial_referrer": "$direct", - "referring_domain": "127.0.0.1:8888", - "initial_referring_domain": "" - }, - "receivedAt": "2019-09-01T15:46:51.000Z", - "request_ip": "49.206.54.243", - "anonymousId": "700ab220-faad-4cdf-8484-63e4c6bce6fe", - "integrations": { - "All": true - }, - "originalTimestamp": "2019-09-01T15:46:51.000Z" - } - } -] diff --git a/test/__tests__/data/facebook_pixel_output.json b/test/__tests__/data/facebook_pixel_output.json deleted file mode 100644 index 3d36fd079e..0000000000 --- a/test/__tests__/data/facebook_pixel_output.json +++ /dev/null @@ -1,772 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"app\",\"custom_data\":{\"additional_bet_index\":0,\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "error": "Message type group not supported", - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "error": "For identify events, \"Advanced Mapping\" configuration must be enabled on the RudderStack dashboard", - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "configuration" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"ph\":\"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579\",\"ge\":\"252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111\",\"ln\":\"532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25\",\"fn\":\"2c2ccf28d806f6f9a34b67aa874d2113b7ac1444f1a4092541b8b75b84771747\",\"client_ip_address\":\"0.0.0.0\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"identify\",\"event_time\":1567333011,\"event_id\":\"84e26acc-56a5-4835-8233-591137fca468\",\"action_source\":\"website\"}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"ph\":\"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579\",\"ge\":\"252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111\",\"zp\":\"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4\",\"client_ip_address\":\"0.0.0.0\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\",\"fn\":\"2c2ccf28d806f6f9a34b67aa874d2113b7ac1444f1a4092541b8b75b84771747\",\"ln\":\"532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25\"},\"event_name\":\"identify\",\"event_time\":1567333011,\"event_id\":\"84e26acc-56a5-4835-8233-591137fca468\",\"action_source\":\"website\"}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"additional_bet_index\":0,\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"additional_bet_index\":0,\"email\":\"abc@gmail.com\",\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"additional_bet_index\":0,\"email\":\"abc@gmail.com\",\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"additional_bet_index\":0,\"email\":\"abc@gmail.com\",\"phone\":\"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579\",\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_ip_address\":\"0.0.0.0\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Viewed page ApplicationLoaded\",\"event_time\":1567333011,\"event_source_url\":\"jkl\",\"event_id\":\"5e10d13a-bf9a-44bf-b884-43a9e591ea71\",\"action_source\":\"website\",\"custom_data\":{\"path\":\"/abc\",\"referrer\":\"xyz\",\"search\":\"def\",\"title\":\"ghi\",\"url\":\"jkl\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_ip_address\":\"0.0.0.0\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Viewed a page\",\"event_time\":1567333011,\"event_source_url\":\"jkl\",\"event_id\":\"5e10d13a-bf9a-44bf-b884-43a9e591ea71\",\"action_source\":\"website\",\"custom_data\":{\"path\":\"/abc\",\"referrer\":\"xyz\",\"search\":\"def\",\"title\":\"ghi\",\"url\":\"jkl\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"phone\":\"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579\",\"email\":\"abc@gmail.com\",\"category\":\"cat 1\",\"list_id\":\"1234\",\"filters[0].type\":\"department\",\"filters[0].value\":\"beauty\",\"filters[1].type\":\"price\",\"filters[1].value\":\"under\",\"sorts[0].type\":\"price\",\"sorts[0].value\":\"desc\",\"testDimension\":true,\"testMetric\":true,\"content_ids\":[\"cat 1\"],\"content_type\":\"product_group\",\"contents\":[{\"id\":\"cat 1\",\"quantity\":1}],\"content_category\":\"cat 1\",\"value\":0,\"currency\":\"USD\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"category\":\"cat 1\",\"list_id\":\"1234\",\"filters[0].type\":\"department\",\"filters[0].value\":\"beauty\",\"filters[1].type\":\"price\",\"filters[1].value\":\"under\",\"sorts[0].type\":\"price\",\"sorts[0].value\":\"desc\",\"testDimension\":true,\"testMetric\":true,\"content_ids\":[\"cat 1\"],\"content_type\":\"product_group\",\"contents\":[{\"id\":\"cat 1\",\"quantity\":1}],\"content_category\":\"cat 1\",\"value\":0,\"currency\":\"USD\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"quantity\":2,\"category\":\"cat 1\",\"list_id\":\"1234\",\"contentName\":\"nutrition\",\"value\":18.9,\"filters[0].type\":\"department\",\"filters[0].value\":\"beauty\",\"filters[1].type\":\"price\",\"filters[1].value\":\"under\",\"sorts[0].type\":\"price\",\"sorts[0].value\":\"desc\",\"products[0].product_id\":\"507f1f77bcf86cd799439011\",\"products[0].productDimension\":\"My Product Dimension\",\"products[0].productMetric\":\"My Product Metric\",\"products[0].position\":10,\"products[1].product_id\":\"507f1f77bcf86cdef799439011\",\"products[1].productDimension\":\"My Product Dimension1\",\"products[1].productMetric\":\"My Product Metric1\",\"products[1].position\":-10,\"testDimension\":true,\"testMetric\":true,\"content_ids\":[\"507f1f77bcf86cd799439011\",\"507f1f77bcf86cdef799439011\"],\"content_type\":\"product\",\"contents\":[{\"id\":\"507f1f77bcf86cd799439011\",\"quantity\":2},{\"id\":\"507f1f77bcf86cdef799439011\",\"quantity\":2}],\"content_category\":\"cat 1\",\"content_name\":\"nutrition\",\"currency\":\"USD\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"quantity\":2,\"category\":\"cat 1\",\"list_id\":\"1234\",\"filters[0].type\":\"department\",\"filters[0].value\":\"beauty\",\"filters[1].type\":\"price\",\"filters[1].value\":\"under\",\"sorts[0].type\":\"price\",\"sorts[0].value\":\"desc\",\"products[0].product_id\":\"507f1f77bcf86cd799439011\",\"products[0].productDimension\":\"My Product Dimension\",\"products[0].productMetric\":\"My Product Metric\",\"products[0].position\":10,\"products[1].product_id\":\"507f1f77bcf86cdef799439011\",\"products[1].productDimension\":\"My Product Dimension1\",\"products[1].productMetric\":\"My Product Metric1\",\"products[1].position\":-10,\"testDimension\":true,\"testMetric\":true,\"content_ids\":[\"507f1f77bcf86cd799439011\",\"507f1f77bcf86cdef799439011\"],\"content_type\":\"product\",\"contents\":[{\"id\":\"507f1f77bcf86cd799439011\",\"quantity\":2},{\"id\":\"507f1f77bcf86cdef799439011\",\"quantity\":2}],\"content_category\":\"cat 1\",\"value\":0,\"currency\":\"USD\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"quantity\":1,\"price\":24.75,\"name\":\"my product 1\",\"category\":\"clothing\",\"sku\":\"p-298\",\"testDimension\":true,\"testMetric\":true,\"position\":4.5,\"content_ids\":[\"p-298\"],\"content_type\":\"product\",\"content_name\":\"my product 1\",\"content_category\":\"clothing\",\"value\":24.75,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75}]}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"AddToCart\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"quantity\":1,\"value\":24.75,\"category\":\"cat 1\",\"id\":\"p-298\",\"testDimension\":true,\"testMetric\":true,\"position\":4.5,\"content_ids\":[\"p-298\"],\"content_type\":\"product\",\"content_name\":\"\",\"content_category\":\"cat 1\",\"contents\":[{\"id\":\"p-298\",\"quantity\":1}]}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Purchase\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"order_id\":\"rudderstackorder1\",\"total\":99.99,\"revenue\":12.24,\"shipping\":13.99,\"tax\":20.99,\"currency\":\"INR\",\"contentName\":\"all about nutrition\",\"products[0].quantity\":1,\"products[0].price\":24.75,\"products[0].name\":\"my product\",\"products[0].sku\":\"p-298\",\"products[1].quantity\":3,\"products[1].price\":24.75,\"products[1].name\":\"other product\",\"products[1].sku\":\"p-299\",\"content_ids\":[\"p-298\",\"p-299\"],\"content_type\":\"product\",\"value\":12.24,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75},{\"id\":\"p-299\",\"quantity\":3,\"item_price\":24.75}],\"num_items\":2,\"content_name\":\"all about nutrition\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"InitiateCheckout\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"category\":\"clothing\",\"contentName\":\"abc\",\"products[0].quantity\":1,\"products[0].price\":24.75,\"products[0].name\":\"my product\",\"products[0].sku\":\"p-298\",\"products[1].quantity\":1,\"products[1].price\":24.75,\"products[1].name\":\"my product 2\",\"products[1].sku\":\"p-299\",\"step\":1,\"paymentMethod\":\"Visa\",\"testDimension\":true,\"testMetric\":true,\"content_category\":\"clothing\",\"content_ids\":[\"p-298\",\"p-299\"],\"content_type\":\"product\",\"value\":0,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75},{\"id\":\"p-299\",\"quantity\":1,\"item_price\":24.75}],\"num_items\":2}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"fbc\":\"fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890\",\"fbp\":\"fb.1.1554763741205.234567890\",\"lead_id\":\"lead_id\",\"fb_login_id\":\"fb_id\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"data_processing_options\":[\"LDU\"],\"data_processing_options_country\":1,\"data_processing_options_state\":1000,\"custom_data\":{\"additional_bet_index\":0,\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\",\"fbc\":\"fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890\",\"fbp\":\"fb.1.1554763741205.234567890\",\"lead_id\":\"lead_id\",\"fb_login_id\":\"fb_id\"},\"event_name\":\"spin_result\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"additional_bet_index\":0,\"value\":400}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Search\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"product_id\":\"p-298\",\"quantity\":2,\"price\":18.9,\"category\":\"health\",\"value\":18.9,\"query\":\"HDMI cable\",\"content_ids\":[\"p-298\"],\"content_category\":\"health\",\"contents\":[{\"id\":\"p-298\",\"quantity\":2,\"item_price\":18.9}],\"search_string\":\"HDMI cable\",\"currency\":\"USD\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Search\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"query\":\"HDMI cable\",\"content_ids\":[],\"content_category\":\"\",\"value\":0,\"contents\":[],\"search_string\":\"HDMI cable\",\"currency\":\"USD\"}}" - ], - "test_event_code": "TEST1001" - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_ip_address\":\"0.0.0.0\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"PageView\",\"event_time\":1567333011,\"event_source_url\":\"jkl\",\"event_id\":\"5e10d13a-bf9a-44bf-b884-43a9e591ea71\",\"action_source\":\"website\",\"custom_data\":{\"path\":\"/abc\",\"referrer\":\"xyz\",\"search\":\"def\",\"title\":\"ghi\",\"url\":\"jkl\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"PageView\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Schedule\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"quantity\":2,\"category\":\"cat 1\",\"list_id\":\"1234\",\"filters[0].type\":\"department\",\"filters[0].value\":\"beauty\",\"filters[1].type\":\"price\",\"filters[1].value\":\"under\",\"sorts[0].type\":\"price\",\"sorts[0].value\":\"desc\",\"products[0].product_id\":\"507f1f77bcf86cd799439011\",\"products[0].productDimension\":\"My Product Dimension\",\"products[0].productMetric\":\"My Product Metric\",\"products[0].position\":10,\"products[1].product_id\":\"507f1f77bcf86cdef799439011\",\"products[1].productDimension\":\"My Product Dimension1\",\"products[1].productMetric\":\"My Product Metric1\",\"products[1].position\":-10,\"testDimension\":true,\"testMetric\":true}}" - ] - } - }, - "files": {} - }, - { - "statusCode": 400, - "error": "'event' is required", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"AddToCart\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"quantity\":1,\"value\":35.75,\"category\":\"cat 1\",\"id\":\"p-298\",\"testDimension\":true,\"testMetric\":true,\"position\":4.5,\"content_ids\":[\"p-298\"],\"content_type\":\"product\",\"content_name\":\"\",\"content_category\":\"cat 1\",\"contents\":[{\"id\":\"p-298\",\"quantity\":1}]}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"AddToCart\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"quantity\":1,\"value\":35.7,\"category\":\"cat 1\",\"id\":\"p-298\",\"testDimension\":true,\"testMetric\":true,\"position\":4.5,\"content_ids\":[\"p-298\"],\"content_type\":\"product\",\"content_name\":\"\",\"content_category\":\"cat 1\",\"contents\":[{\"id\":\"p-298\",\"quantity\":1}]}}" - ] - } - }, - "files": {} - }, - { - "statusCode": 400, - "error": "Revenue could not be converted to number", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Purchase\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"category[0]\":\"clothing\",\"category[1]\":\"fishing\",\"order_id\":\"rudderstackorder1\",\"total\":99.99,\"revenue\":12.24,\"shipping\":13.99,\"tax\":20.99,\"currency\":\"INR\",\"products[0].quantity\":1,\"products[0].price\":24.75,\"products[0].name\":\"my product\",\"products[0].sku\":\"p-298\",\"products[1].quantity\":3,\"products[1].price\":24.75,\"products[1].name\":\"other product\",\"products[1].sku\":\"p-299\",\"content_category\":\"clothing,fishing\",\"content_ids\":[\"p-298\",\"p-299\"],\"content_type\":\"product\",\"value\":12.24,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75},{\"id\":\"p-299\",\"quantity\":3,\"item_price\":24.75}],\"num_items\":2}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Purchase\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"category\":100,\"order_id\":\"rudderstackorder1\",\"total\":99.99,\"revenue\":12.24,\"shipping\":13.99,\"tax\":20.99,\"currency\":\"INR\",\"products[0].quantity\":1,\"products[0].price\":24.75,\"products[0].name\":\"my product\",\"products[0].sku\":\"p-298\",\"products[1].quantity\":3,\"products[1].price\":24.75,\"products[1].name\":\"other product\",\"products[1].sku\":\"p-299\",\"content_category\":\"100\",\"content_ids\":[\"p-298\",\"p-299\"],\"content_type\":\"product\",\"value\":12.24,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75},{\"id\":\"p-299\",\"quantity\":3,\"item_price\":24.75}],\"num_items\":2}}" - ] - } - }, - "files": {} - }, - { - "statusCode": 400, - "error": "'properties.category' must be either be a string or an array", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a\",\"em\":\"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08\"},\"event_name\":\"Schedule\",\"event_time\":1567333011,\"action_source\":\"other\",\"custom_data\":{\"revenue\":400,\"additional_bet_index\":0}}" - ] - } - }, - "files": {} - }, - { - "statusCode": 400, - "error": "Events must be sent within seven days of their occurrence or up to one minute in the future.", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "statusCode": 400, - "error": "Events must be sent within seven days of their occurrence or up to one minute in the future.", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "statusCode": 400, - "error": "'query' should be in string format only", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"Search\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"query\":50,\"content_ids\":[],\"content_category\":\"\",\"value\":0,\"contents\":[],\"search_string\":50,\"currency\":\"USD\"}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\",\"fbc\":\"fb.1.1567333011693.IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI\"},\"event_name\":\"InitiateCheckout\",\"event_time\":1567333011,\"event_source_url\":\"https://theminimstory.com/collections/summer-of-pearls?utm_source=facebook&utm_medium=paidsocial&utm_campaign=carousel&utm_content=ad1-jul&fbclid=IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI\",\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"category\":\"clothing\",\"products[0].quantity\":1,\"products[0].price\":24.75,\"products[0].name\":\"my product\",\"products[0].sku\":\"p-298\",\"products[1].quantity\":1,\"products[1].price\":24.75,\"products[1].name\":\"my product 2\",\"products[1].sku\":\"p-299\",\"step\":1,\"paymentMethod\":\"Visa\",\"testDimension\":true,\"testMetric\":true,\"content_category\":\"clothing\",\"content_ids\":[\"p-298\",\"p-299\"],\"content_type\":\"product\",\"value\":0,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75},{\"id\":\"p-299\",\"quantity\":1,\"item_price\":24.75}],\"num_items\":2}}" - ] - } - }, - "files": {} - }, - { - "statusCode": 400, - "error": "event name should be string", - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5\",\"em\":\"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"InitiateCheckout\",\"event_time\":1567333011,\"event_source_url\":\"url in wrong format\",\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"category\":\"clothing\",\"products[0].quantity\":1,\"products[0].price\":24.75,\"products[0].name\":\"my product\",\"products[0].sku\":\"p-298\",\"products[1].quantity\":1,\"products[1].price\":24.75,\"products[1].name\":\"my product 2\",\"products[1].sku\":\"p-299\",\"step\":1,\"paymentMethod\":\"Visa\",\"testDimension\":true,\"testMetric\":true,\"content_category\":\"clothing\",\"content_ids\":[\"p-298\",\"p-299\"],\"content_type\":\"product\",\"value\":0,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75},{\"id\":\"p-299\",\"quantity\":1,\"item_price\":24.75}],\"num_items\":2}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"quantity\":1,\"price\":24.75,\"name\":\"my product 1\",\"category\":\"clothing\",\"sku\":\"p-298\",\"testDimension\":true,\"testMetric\":true,\"position\":4.5,\"content_ids\":[\"p-298\"],\"content_type\":\"sending dedicated content type for this particular payload\",\"content_name\":\"my product 1\",\"content_category\":\"clothing\",\"value\":24.75,\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75}]}}" - ] - } - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "data": [ - "{\"user_data\":{\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\"},\"event_name\":\"ViewContent\",\"event_time\":1567333011,\"event_id\":\"ec5481b6-a926-4d2e-b293-0b3a77c4d3be\",\"action_source\":\"website\",\"custom_data\":{\"currency\":\"CAD\",\"quantity\":1,\"price\":24.75,\"value\":18.9,\"name\":\"my product 1\",\"category\":\"clothing\",\"sku\":\"p-298\",\"testDimension\":true,\"testMetric\":true,\"position\":4.5,\"content_ids\":[\"p-298\"],\"content_type\":\"product\",\"content_name\":\"my product 1\",\"content_category\":\"clothing\",\"contents\":[{\"id\":\"p-298\",\"quantity\":1,\"item_price\":24.75}]}}" - ] - } - }, - "files": {} - }, - { - "error": "'properties.products' is not sent as an Array", - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "error": "'properties.products[1]' is not an object", - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "error": "Access token not found. Aborting", - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "configuration" - } - }, - { - "error": "Pixel Id not found. Aborting", - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "configuration" - } - }, - { - "body": { - "FORM": { - "data": [ - "{\"user_data\":{\"external_id\":\"72fd46c9ecb386f6747664a3e1d524294a3d7a2c8ae4aeb22b1e578b75093635\",\"client_ip_address\":\"49.206.54.243\",\"client_user_agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"},\"event_name\":\"PageView\",\"event_time\":1567352811,\"event_source_url\":\"http://127.0.0.1:8888/\",\"action_source\":\"website\",\"custom_data\":{\"url\":\"http://127.0.0.1:8888/\",\"path\":\"/\",\"title\":\"Document\",\"search\":\"\",\"tab_url\":\"http://127.0.0.1:8888/\",\"referrer\":\"http://127.0.0.1:8888/\",\"initial_referrer\":\"$direct\",\"referring_domain\":\"127.0.0.1:8888\",\"initial_referring_domain\":\"\"}}" - ] - }, - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {} - }, - "endpoint": "https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=dummyAccessToken", - "files": {}, - "headers": {}, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - } -] diff --git a/test/__tests__/data/fb_custom_audience.json b/test/__tests__/data/fb_custom_audience.json deleted file mode 100644 index 432cc08ce8..0000000000 --- a/test/__tests__/data/fb_custom_audience.json +++ /dev/null @@ -1,54067 +0,0 @@ -[ - { - "description": "No Message type", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": { - "error": "Message Type is not present. Aborting message." - } - }, - { - "description": "Unsupported Event type ", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "type": "Track", - "event": "event1", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": { - "error": " Track call is not supported " - } - }, - { - "description": "Non-Numerical Batch Size Event", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "type": "audiencelist", - "event": "event1", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "abc50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": { - "error": "Batch size must be an Integer." - } - }, - { - "description": "Audience ID Empty Event", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "type": "audiencelist", - "event": "event1", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": { - "error": "Audience ID is a mandatory field" - } - }, - { - "description": "Type NA ", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "No Hashing and Format Disabled", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": true, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "For User Schema having single Schema field Event ", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": "DOBM", - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": ["DOBM"], - "data": [["2"]] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": ["DOBM"], - "data": [["2"]] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Hashing Disabaled and Type Unknown ", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Required Hash", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": true, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "d3142c8f9c9129484daf28df80cc5c955791efed5e69afabb603bc8cb9ffd419", - "a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116", - "3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278", - "7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f", - "7619ee8cea49187f309616e30ecf54be072259b43760f1f550a644945d5572f2", - "252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111", - "db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc", - "abc", - "4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2", - "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", - "582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "d3142c8f9c9129484daf28df80cc5c955791efed5e69afabb603bc8cb9ffd419", - "a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116", - "3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278", - "7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f", - "7619ee8cea49187f309616e30ecf54be072259b43760f1f550a644945d5572f2", - "252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111", - "db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc", - "abc", - "4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2", - "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", - "582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Format Disabled", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": true, - "disableFormat": true, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "d3142c8f9c9129484daf28df80cc5c955791efed5e69afabb603bc8cb9ffd419", - "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35", - "3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278", - "7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f", - "8846dcb6ab2d73a0e67dbd569fa17cec2d9d391e5b05d1dd42919bc21ae82c45", - "252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111", - "7cfb46258a6f545f77cca49a27ded0bc69a56e16d0dcdf05ec843c0cc322145d", - "ABC", - "69deb728a28faee80ee80d8d5f97a5e2fd65758684f7412e535d19a19095369b", - "1dc362d22242a898483383061a98f0b41d725190f7bc00a962b6013b36dc2b81", - "fed1d872f6d540f4118582ec694270274e987b12f5dfe2057dddf1e12df2761a" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "d3142c8f9c9129484daf28df80cc5c955791efed5e69afabb603bc8cb9ffd419", - "d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35", - "3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278", - "7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f", - "8846dcb6ab2d73a0e67dbd569fa17cec2d9d391e5b05d1dd42919bc21ae82c45", - "252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111", - "7cfb46258a6f545f77cca49a27ded0bc69a56e16d0dcdf05ec843c0cc322145d", - "ABC", - "69deb728a28faee80ee80d8d5f97a5e2fd65758684f7412e535d19a19095369b", - "1dc362d22242a898483383061a98f0b41d725190f7bc00a962b6013b36dc2b81", - "fed1d872f6d540f4118582ec694270274e987b12f5dfe2057dddf1e12df2761a" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "No Hashing and Format Disabled", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": true, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Hash Required and Verify skipped", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": null, - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": true, - "disableFormat": false, - "skipVerify": true, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "d3142c8f9c9129484daf28df80cc5c955791efed5e69afabb603bc8cb9ffd419", - "a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116", - "3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278", - "7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f", - null, - "252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111", - "db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc", - "abc", - "4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2", - "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", - "582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf" - ] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "All the field values are null", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": null, - "DOBM": null, - "DOBD": null, - "DOBY": null, - "PHONE": null, - "GEN": null, - "FI": null, - "MADID": null, - "ZIP": null, - "ST": null, - "COUNTRY": null - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": true, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [[null, null, null, null, null, null, null, null, null, null, null]] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Schema Phone Field Missing", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": null, - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": true, - "disableFormat": false, - "skipVerify": false, - "audienceId": "aud1", - "isRaw": false, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "d3142c8f9c9129484daf28df80cc5c955791efed5e69afabb603bc8cb9ffd419", - "a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116", - "3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278", - "7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f", - null, - "252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111", - "db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc", - "abc", - "4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2", - "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", - "582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf" - ] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Batching according payload size", - "input": { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": true, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "1000" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - } -] diff --git a/test/__tests__/data/fb_custom_audience_router.json b/test/__tests__/data/fb_custom_audience_router.json deleted file mode 100644 index 9a490a697a..0000000000 --- a/test/__tests__/data/fb_custom_audience_router.json +++ /dev/null @@ -1,457 +0,0 @@ -[ - { - "description": "Test Case 9", - "input": [ - { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user 1", - "anonymousId": "anon-id-new", - "event": "event1", - "type": "audiencelist", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ], - "remove": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "f", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - } - ], - "output": [ - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "type": "UNKNOWN", - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ], - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "UNKNOWN", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "DELETE", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "data_source": { - "sub_type": "ANYTHING" - }, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "f", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ], - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accessToken": "ABC", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "isHashRequired": false, - "disableFormat": false, - "audienceId": "aud1", - "isRaw": true, - "type": "NA", - "subType": "ANYTHING", - "maxUserCount": "50" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } - ] - } -] diff --git a/test/__tests__/data/fb_custom_audience_router_rETL_input.json b/test/__tests__/data/fb_custom_audience_router_rETL_input.json deleted file mode 100644 index 84475d7aae..0000000000 --- a/test/__tests__/data/fb_custom_audience_router_rETL_input.json +++ /dev/null @@ -1,26251 +0,0 @@ -[ - { - "message": { - "sentAt": "2023-03-30 06:42:55.991938402 +0000 UTC", - "userId": "2MUWghI7u85n91dd1qzGyswpZan-2MUWqbQqvctyfMGqU9QCNadpKNy", - "channel": "sources", - "messageId": "4d906837-031d-4d34-b97a-62fdf51b4d3a", - "event": "Add_Audience", - "context": { - "destinationFields": "EMAIL, FN", - "externalId": [ - { - "type": "FB_CUSTOM_AUDIENCE-23848494844100489", - "identifierType": "EMAIL" - } - ], - "mappedToDestination": "true", - "sources": { - "job_run_id": "cgiiurt8um7k7n5dq480", - "task_run_id": "cgiiurt8um7k7n5dq48g", - "job_id": "2MUWghI7u85n91dd1qzGyswpZan", - "version": "895/merge" - } - }, - "recordId": "725ad989-6750-4839-b46b-0ddb3b8e5aa2/1/10", - "rudderId": "85c49666-c628-4835-937b-8f1d9ee7a724", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "dede@gmail.com", - "FN": "vishwa" - }, - { - "EMAIL": "fchsjjn@gmail.com", - "FN": "hskks" - }, - { - "EMAIL": "fghjnbjk@gmail.com", - "FN": "ghfry" - }, - { - "EMAIL": "gvhjkk@gmail.com", - "FN": "hbcwqe" - }, - { - "EMAIL": "qsdwert@egf.com", - "FN": "dsfds" - }, - { - "EMAIL": "ascscxsaca@com", - "FN": "scadscdvcda" - }, - { - "EMAIL": "abc@gmail.com", - "FN": "subscribed" - }, - { - "EMAIL": "ddwnkl@gmail.com", - "FN": "subscribed" - }, - { - "EMAIL": "subscribed@eewrfrd.com", - "FN": "pending" - }, - { - "EMAIL": "acsdvdf@ddfvf.com", - "FN": "pending" - } - ] - } - }, - "type": "audienceList", - "anonymousId": "63228b51-394e-4ca2-97a0-427f6187480b" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "disableFormat": false, - "isHashRequired": true, - "isRaw": false, - "maxUserCount": "50", - "oneTrustCookieCategories": [], - "skipVerify": false, - "subType": "NA", - "type": "NA", - "userSchema": ["EMAIL"] - }, - "secretConfig": {}, - "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", - "name": "FB_CUSTOM_AUDIENCE", - "enabled": true, - "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", - "deleted": false, - "createdAt": "2020-12-30T08:39:32.005Z", - "updatedAt": "2021-02-03T16:22:31.374Z", - "destinationDefinition": { - "id": "1aIXqM806xAVm92nx07YwKbRrO9", - "name": "FB_CUSTOM_AUDIENCE", - "displayName": "FB_CUSTOM_AUDIENCE", - "createdAt": "2020-04-09T09:24:31.794Z", - "updatedAt": "2021-01-11T11:03:28.103Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true - }, - "metadata": { - "jobId": 2 - } - }, - { - "message": { - "sentAt": "2023-03-30 06:42:55.991938402 +0000 UTC", - "userId": "2MUWghI7u85n91dd1qzGyswpZan-2MUWqbQqvctyfMGqU9QCNadpKNy", - "channel": "sources", - "messageId": "4d906837-031d-4d34-b97a-62fdf51b4d3a", - "event": "Add_Audience", - "context": { - "externalId": [ - { - "type": "FB_CUSTOM_AUDIENCE-23848494844100489", - "identifierType": "EMAIL" - } - ], - "mappedToDestination": "true", - "sources": { - "job_run_id": "cgiiurt8um7k7n5dq480", - "task_run_id": "cgiiurt8um7k7n5dq48g", - "job_id": "2MUWghI7u85n91dd1qzGyswpZan", - "version": "895/merge" - } - }, - "recordId": "725ad989-6750-4839-b46b-0ddb3b8e5aa2/1/10", - "rudderId": "85c49666-c628-4835-937b-8f1d9ee7a724", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "dede@gmail.com", - "FN": "vishwa" - }, - { - "EMAIL": "fchsjjn@gmail.com", - "FN": "hskks" - }, - { - "EMAIL": "fghjnbjk@gmail.com", - "FN": "ghfry" - }, - { - "EMAIL": "gvhjkk@gmail.com", - "FN": "hbcwqe" - }, - { - "EMAIL": "qsdwert@egf.com", - "FN": "dsfds" - }, - { - "EMAIL": "ascscxsaca@com", - "FN": "scadscdvcda" - }, - { - "EMAIL": "abc@gmail.com", - "FN": "subscribed" - }, - { - "EMAIL": "ddwnkl@gmail.com", - "FN": "subscribed" - }, - { - "EMAIL": "subscribed@eewrfrd.com", - "FN": "pending" - }, - { - "EMAIL": "acsdvdf@ddfvf.com", - "FN": "pending" - } - ] - } - }, - "type": "audienceList", - "anonymousId": "63228b51-394e-4ca2-97a0-427f6187480b" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "disableFormat": false, - "isHashRequired": true, - "isRaw": false, - "maxUserCount": "50", - "oneTrustCookieCategories": [], - "skipVerify": false, - "subType": "NA", - "type": "NA", - "userSchema": ["EMAIL"] - }, - "secretConfig": {}, - "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", - "name": "FB_CUSTOM_AUDIENCE", - "enabled": true, - "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", - "deleted": false, - "createdAt": "2020-12-30T08:39:32.005Z", - "updatedAt": "2021-02-03T16:22:31.374Z", - "destinationDefinition": { - "id": "1aIXqM806xAVm92nx07YwKbRrO9", - "name": "FB_CUSTOM_AUDIENCE", - "displayName": "FB_CUSTOM_AUDIENCE", - "createdAt": "2020-04-09T09:24:31.794Z", - "updatedAt": "2021-01-11T11:03:28.103Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true - }, - "metadata": { - "jobId": 2 - } - }, - { - "message": { - "sentAt": "2023-03-30 06:42:55.991938402 +0000 UTC", - "userId": "2MUWghI7u85n91dd1qzGyswpZan-2MUWqbQqvctyfMGqU9QCNadpKNy", - "channel": "sources", - "messageId": "4d906837-031d-4d34-b97a-62fdf51b4d3a", - "event": "Add_Audience", - "context": { - "destinationFields": "EMAIL, DOBM, DOBD, DOBY, PHONE, GEN, FI, MADID, ZIP, ST, COUNTRY", - "externalId": [ - { - "type": "FB_CUSTOM_AUDIENCE-aud1", - "identifierType": "EMAIL" - } - ], - "mappedToDestination": "true", - "sources": { - "job_run_id": "cgiiurt8um7k7n5dq480", - "task_run_id": "cgiiurt8um7k7n5dq48g", - "job_id": "2MUWghI7u85n91dd1qzGyswpZan", - "version": "895/merge" - } - }, - "recordId": "725ad989-6750-4839-b46b-0ddb3b8e5aa2/1/10", - "rudderId": "85c49666-c628-4835-937b-8f1d9ee7a724", - "properties": { - "listData": { - "add": [ - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - }, - { - "EMAIL": "test@abc.com", - "DOBM": "2", - "DOBD": "13", - "DOBY": "2013", - "PHONE": "@09876543210", - "GEN": "female", - "FI": "Ms.", - "MADID": "ABC", - "ZIP": "ZIP ", - "ST": "123abc ", - "COUNTRY": "IN" - } - ] - } - }, - "type": "audienceList", - "anonymousId": "63228b51-394e-4ca2-97a0-427f6187480b" - }, - "destination": { - "Config": { - "accessToken": "ABC", - "disableFormat": false, - "isHashRequired": false, - "isRaw": true, - "maxUserCount": "1000", - "oneTrustCookieCategories": [], - "skipVerify": false, - "subType": "NA", - "type": "NA", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ] - }, - "secretConfig": {}, - "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", - "name": "FB_CUSTOM_AUDIENCE", - "enabled": true, - "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", - "deleted": false, - "createdAt": "2020-12-30T08:39:32.005Z", - "updatedAt": "2021-02-03T16:22:31.374Z", - "destinationDefinition": { - "id": "1aIXqM806xAVm92nx07YwKbRrO9", - "name": "FB_CUSTOM_AUDIENCE", - "displayName": "FB_CUSTOM_AUDIENCE", - "createdAt": "2020-04-09T09:24:31.794Z", - "updatedAt": "2021-01-11T11:03:28.103Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true - }, - "metadata": { - "jobId": 2 - } - } -] diff --git a/test/__tests__/data/fb_custom_audience_router_rETL_output.json b/test/__tests__/data/fb_custom_audience_router_rETL_output.json deleted file mode 100644 index 45e8f29b3c..0000000000 --- a/test/__tests__/data/fb_custom_audience_router_rETL_output.json +++ /dev/null @@ -1,26266 +0,0 @@ -[ - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/23848494844100489/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "schema": ["EMAIL", "FN"], - "data": [ - ["7625cab24612c37df6d2f724721bb38a25095d0295e29b807238ee188b8aca43", null], - ["b2b4abadd72190af54305c0d3abf1977fec4935016bb13ff28040d5712318dfd", null], - ["c4b007d1c3c9a5d31bd4082237a913e8e0db1767225c2a5ef33be2716df005fa", null], - ["94639be1bd9f17c05820164e9d71ef78558f117a9e8bfab43cf8015e08aa0b27", null], - ["39b456cfb4bb07f9e6bb18698aa173171ca49c731fccc4790e9ecea808d24ae6", null], - ["769f73387add781a481ca08300008a08fb2f1816aaed196137efc2e05976d711", null], - ["48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", null], - ["da2d431121cd10578fd81f8f80344b06db59ea2d05a7b5d27536c8789ddae8f0", null], - ["b100c2ec0718fe6b4805b623aeec6710719d042ceea55f5c8135b010ec1c7b36", null], - ["0c1d1b0ba547a742013366d6fbc8f71dd77f566d94e41ed9f828a74b96928161", null] - ] - } - }, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ], - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accessToken": "ABC", - "disableFormat": false, - "isHashRequired": true, - "isRaw": false, - "maxUserCount": "50", - "oneTrustCookieCategories": [], - "skipVerify": false, - "subType": "NA", - "type": "NA", - "userSchema": ["EMAIL"] - }, - "secretConfig": {}, - "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", - "name": "FB_CUSTOM_AUDIENCE", - "enabled": true, - "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", - "deleted": false, - "createdAt": "2020-12-30T08:39:32.005Z", - "updatedAt": "2021-02-03T16:22:31.374Z", - "destinationDefinition": { - "id": "1aIXqM806xAVm92nx07YwKbRrO9", - "name": "FB_CUSTOM_AUDIENCE", - "displayName": "FB_CUSTOM_AUDIENCE", - "createdAt": "2020-04-09T09:24:31.794Z", - "updatedAt": "2021-01-11T11:03:28.103Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true - } - }, - { - "destination": { - "Config": { - "accessToken": "ABC", - "disableFormat": false, - "isHashRequired": true, - "isRaw": false, - "maxUserCount": "50", - "oneTrustCookieCategories": [], - "skipVerify": false, - "subType": "NA", - "type": "NA", - "userSchema": ["EMAIL"] - }, - "secretConfig": {}, - "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", - "name": "FB_CUSTOM_AUDIENCE", - "enabled": true, - "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", - "deleted": false, - "createdAt": "2020-12-30T08:39:32.005Z", - "updatedAt": "2021-02-03T16:22:31.374Z", - "destinationDefinition": { - "id": "1aIXqM806xAVm92nx07YwKbRrO9", - "name": "FB_CUSTOM_AUDIENCE", - "displayName": "FB_CUSTOM_AUDIENCE", - "createdAt": "2020-04-09T09:24:31.794Z", - "updatedAt": "2021-01-11T11:03:28.103Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true - }, - "error": "context.destinationFields is required property for events mapped to destination ", - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 400, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - } - }, - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/aud1/users", - "headers": {}, - "params": { - "access_token": "ABC", - "payload": { - "is_raw": true, - "schema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ], - "data": [ - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ], - [ - "test@abc.com", - "2", - "13", - "2013", - "@09876543210", - "female", - "Ms.", - "ABC", - "ZIP ", - "123abc ", - "IN" - ] - ] - } - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ], - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accessToken": "ABC", - "disableFormat": false, - "isHashRequired": false, - "isRaw": true, - "maxUserCount": "1000", - "oneTrustCookieCategories": [], - "skipVerify": false, - "subType": "NA", - "type": "NA", - "userSchema": [ - "EMAIL", - "DOBM", - "DOBD", - "DOBY", - "PHONE", - "GEN", - "FI", - "MADID", - "ZIP", - "ST", - "COUNTRY" - ] - }, - "secretConfig": {}, - "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", - "name": "FB_CUSTOM_AUDIENCE", - "enabled": true, - "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", - "deleted": false, - "createdAt": "2020-12-30T08:39:32.005Z", - "updatedAt": "2021-02-03T16:22:31.374Z", - "destinationDefinition": { - "id": "1aIXqM806xAVm92nx07YwKbRrO9", - "name": "FB_CUSTOM_AUDIENCE", - "displayName": "FB_CUSTOM_AUDIENCE", - "createdAt": "2020-04-09T09:24:31.794Z", - "updatedAt": "2021-01-11T11:03:28.103Z" - }, - "transformations": [], - "isConnectionEnabled": true, - "isProcessorEnabled": true - } - } -] diff --git a/test/__tests__/data/fb_input.json b/test/__tests__/data/fb_input.json deleted file mode 100644 index 95afdaf135..0000000000 --- a/test/__tests__/data/fb_input.json +++ /dev/null @@ -1,1455 +0,0 @@ -[ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": 123 - }, - { - "product_id": 345 - }, - { - "product_id": 567 - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": 123 - }, - { - "product_id": 345 - }, - { - "product_id": 567 - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": "400", - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - }, - { - "product_id": "567" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "advertisingId": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "type": "Android" - }, - "ip": "1.2.3.4", - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "width": "640", - "height": "480", - "density": 1.23456 - }, - "timezone": "Europe/Berlin", - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "firstName": "test", - "lastName": "last", - "gender": 1234, - "phone": "+91-9831311135" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - }, - { - "product_id": "567" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "advertisingId": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "type": "Android" - }, - "ip": "1.2.3.4", - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "width": "640", - "height": "480", - "density": 1.23456 - }, - "timezone": "Europe/Berlin", - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "firstName": "test", - "lastName": "last", - "gender": "Male", - "phone": "+91-9831311135" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - }, - { - "product_id": "567" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Main.1233" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "screen" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Main" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "screen" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "New.Event", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Main" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "iOS" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "iOS", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Viewed Main Screen1 by expicit call Screen" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "screen" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "Android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Viewed Main Screen1 by expicit call Screen" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "screen" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "Android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Viewed Main Screen1 by expicit call Screen" - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "screen" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "advertisingId": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "firstName": "test", - "lastName": "last", - "gender": "Male", - "phone": "919831311135" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - }, - { - "product_id": "567" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "advertisingId": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "firstName": "test", - "lastName": "last", - "gender": "Male", - "phone": "+0091-9831311135" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - }, - { - "product_id": "567" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "type": "watchos" - }, - "network": { - "carrier": "Banglalink" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "name": "Viewed Main Screen1 by expicit call Screen" - }, - "request_ip": "2.3.4.5", - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "screen" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "advertisingId": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "firstName": "test", - "lastName": "last", - "gender": "Male", - "phone": "919831311135" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - }, - { - "product_id": "567" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 0, - "currency": "INR", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": "123" - }, - { - "product_id": "345" - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - } -] \ No newline at end of file diff --git a/test/__tests__/data/fb_output.json b/test/__tests__/data/fb_output.json deleted file mode 100644 index 2923e1720e..0000000000 --- a/test/__tests__/data/fb_output.json +++ /dev/null @@ -1,310 +0,0 @@ -[ - { - "message": "If properties.revenue is present, properties.currency is required." - }, - { - "message": "Value of properties.products.sub.product_id is not of valid type. It should be of type string" - }, - { - "message": "Value of properties.revenue is not of valid type. It should be of type number" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "event": "CUSTOM_APP_EVENTS", - "advertiser_id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "ud[fn]": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08", - "ud[ln]": "3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3", - "ud[ph]": "588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f", - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",640,480,\"1.23\",0,0,0,\"Europe/Berlin\"]", - "app_user_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"spin_result\",\"_valueToSum\":400,\"fb_currency\":\"GBP\",\"additional_bet_index\":0,\"battle_id\":\"N/A\",\"bet_amount\":9,\"bet_level\":1,\"bet_multiplier\":1,\"coin_balance\":9466052,\"current_module_name\":\"CasinoGameModule\",\"days_in_game\":0,\"extra_param\":\"N/A\",\"fb_profile\":\"0\",\"featureGameType\":\"N/A\",\"game_fps\":30,\"game_id\":\"fireEagleBase\",\"game_name\":\"FireEagleSlots\",\"gem_balance\":0,\"graphicsQuality\":\"HD\",\"idfa\":\"2bf99787-33d2-4ae2-a76a-c49672f97252\",\"internetReachability\":\"ReachableViaLocalAreaNetwork\",\"isLowEndDevice\":\"False\",\"is_auto_spin\":\"False\",\"is_turbo\":\"False\",\"isf\":\"False\",\"ishighroller\":\"False\",\"jackpot_win_amount\":90,\"jackpot_win_type\":\"Silver\",\"level\":6,\"lifetime_gem_balance\":0,\"no_of_spin\":1,\"player_total_battles\":0,\"player_total_shields\":0,\"start_date\":\"2019-08-01\",\"total_payments\":0,\"tournament_id\":\"T1561970819\",\"userId\":\"c82cbdff-e5be-4009-ac78-cdeea09ab4b1\",\"versionSessionCount\":2,\"win_amount\":0,\"fb_content_id\":[\"123\",\"345\",\"567\"]}]", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0" - }, - "JSON": {} - }, - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "files": {}, - "headers": { - "x-forwarded-for": "1.2.3.4" - }, - "method": "POST", - "params": {}, - "statusCode": 200, - "type": "REST", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "version": "1" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "event": "CUSTOM_APP_EVENTS", - "advertiser_id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "ud[fn]": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08", - "ud[ge]": "62c66a7a5dd70c3146618063c344e531e6d4b59e379808443ce962b3abd63c5a", - "ud[ln]": "3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3", - "ud[ph]": "588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f", - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",640,480,\"1.23\",0,0,0,\"Europe/Berlin\"]", - "app_user_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"spin_result\",\"_valueToSum\":400,\"fb_currency\":\"GBP\",\"additional_bet_index\":0,\"battle_id\":\"N/A\",\"bet_amount\":9,\"bet_level\":1,\"bet_multiplier\":1,\"coin_balance\":9466052,\"current_module_name\":\"CasinoGameModule\",\"days_in_game\":0,\"extra_param\":\"N/A\",\"fb_profile\":\"0\",\"featureGameType\":\"N/A\",\"game_fps\":30,\"game_id\":\"fireEagleBase\",\"game_name\":\"FireEagleSlots\",\"gem_balance\":0,\"graphicsQuality\":\"HD\",\"idfa\":\"2bf99787-33d2-4ae2-a76a-c49672f97252\",\"internetReachability\":\"ReachableViaLocalAreaNetwork\",\"isLowEndDevice\":\"False\",\"is_auto_spin\":\"False\",\"is_turbo\":\"False\",\"isf\":\"False\",\"ishighroller\":\"False\",\"jackpot_win_amount\":90,\"jackpot_win_type\":\"Silver\",\"level\":6,\"lifetime_gem_balance\":0,\"no_of_spin\":1,\"player_total_battles\":0,\"player_total_shields\":0,\"start_date\":\"2019-08-01\",\"total_payments\":0,\"tournament_id\":\"T1561970819\",\"userId\":\"c82cbdff-e5be-4009-ac78-cdeea09ab4b1\",\"versionSessionCount\":2,\"win_amount\":0,\"fb_content_id\":[\"123\",\"345\",\"567\"]}]", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0" - }, - "JSON": {} - }, - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "files": {}, - "headers": { - "x-forwarded-for": "1.2.3.4" - }, - "method": "POST", - "params": {}, - "statusCode": 200, - "type": "REST", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "version": "1" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"Viewed Screen\",\"fb_description\":\"Main.1233\"}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"Viewed Main Screen\",\"fb_description\":\"Main\"}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "message": "Event name New.Event is not a valid FB APP event name.It must match the regex ^[0-9a-zA-Z_][0-9a-zA-Z _-]{0,39}$." - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"i2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"Viewed Screen\",\"fb_description\":\"Viewed Main Screen1 by expicit call Screen\"}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"Viewed Screen\",\"fb_description\":\"Viewed Main Screen1 by expicit call Screen\"}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"Viewed Screen\",\"fb_description\":\"Viewed Main Screen1 by expicit call Screen\"}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"spin_result\",\"_valueToSum\":400,\"fb_currency\":\"GBP\",\"additional_bet_index\":0,\"battle_id\":\"N/A\",\"bet_amount\":9,\"bet_level\":1,\"bet_multiplier\":1,\"coin_balance\":9466052,\"current_module_name\":\"CasinoGameModule\",\"days_in_game\":0,\"extra_param\":\"N/A\",\"fb_profile\":\"0\",\"featureGameType\":\"N/A\",\"game_fps\":30,\"game_id\":\"fireEagleBase\",\"game_name\":\"FireEagleSlots\",\"gem_balance\":0,\"graphicsQuality\":\"HD\",\"idfa\":\"2bf99787-33d2-4ae2-a76a-c49672f97252\",\"internetReachability\":\"ReachableViaLocalAreaNetwork\",\"isLowEndDevice\":\"False\",\"is_auto_spin\":\"False\",\"is_turbo\":\"False\",\"isf\":\"False\",\"ishighroller\":\"False\",\"jackpot_win_amount\":90,\"jackpot_win_type\":\"Silver\",\"level\":6,\"lifetime_gem_balance\":0,\"no_of_spin\":1,\"player_total_battles\":0,\"player_total_shields\":0,\"start_date\":\"2019-08-01\",\"total_payments\":0,\"tournament_id\":\"T1561970819\",\"userId\":\"c82cbdff-e5be-4009-ac78-cdeea09ab4b1\",\"versionSessionCount\":2,\"win_amount\":0,\"fb_content_id\":[\"123\",\"345\",\"567\"]}]", - "app_user_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "advertiser_id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "ud[fn]": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08", - "ud[ln]": "3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3", - "ud[ph]": "588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f", - "ud[ge]": "62c66a7a5dd70c3146618063c344e531e6d4b59e379808443ce962b3abd63c5a", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"spin_result\",\"_valueToSum\":400,\"fb_currency\":\"GBP\",\"additional_bet_index\":0,\"battle_id\":\"N/A\",\"bet_amount\":9,\"bet_level\":1,\"bet_multiplier\":1,\"coin_balance\":9466052,\"current_module_name\":\"CasinoGameModule\",\"days_in_game\":0,\"extra_param\":\"N/A\",\"fb_profile\":\"0\",\"featureGameType\":\"N/A\",\"game_fps\":30,\"game_id\":\"fireEagleBase\",\"game_name\":\"FireEagleSlots\",\"gem_balance\":0,\"graphicsQuality\":\"HD\",\"idfa\":\"2bf99787-33d2-4ae2-a76a-c49672f97252\",\"internetReachability\":\"ReachableViaLocalAreaNetwork\",\"isLowEndDevice\":\"False\",\"is_auto_spin\":\"False\",\"is_turbo\":\"False\",\"isf\":\"False\",\"ishighroller\":\"False\",\"jackpot_win_amount\":90,\"jackpot_win_type\":\"Silver\",\"level\":6,\"lifetime_gem_balance\":0,\"no_of_spin\":1,\"player_total_battles\":0,\"player_total_shields\":0,\"start_date\":\"2019-08-01\",\"total_payments\":0,\"tournament_id\":\"T1561970819\",\"userId\":\"c82cbdff-e5be-4009-ac78-cdeea09ab4b1\",\"versionSessionCount\":2,\"win_amount\":0,\"fb_content_id\":[\"123\",\"345\",\"567\"]}]", - "app_user_id": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "advertiser_id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "ud[fn]": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08", - "ud[ln]": "3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3", - "ud[ph]": "588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f", - "ud[ge]": "62c66a7a5dd70c3146618063c344e531e6d4b59e379808443ce962b3abd63c5a", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": { - "x-forwarded-for": "2.3.4.5" - }, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "extinfo": "[\"i2\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"Viewed Screen\",\"fb_description\":\"Viewed Main Screen1 by expicit call Screen\"}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - }, - { - "message": "Extended device information i.e, \"context.device.type\" is required" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://graph.facebook.com/v17.0/RudderFbApp/activities", - "headers": {}, - "params": {}, - "body": { - "JSON": {}, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": { - "extinfo": "[\"a2\",\"\",\"\",\"\",\"8.1.0\",\"Redmi 6\",\"\",\"\",\"Banglalink\",0,100,\"50.00\",0,0,0,\"\"]", - "custom_events": "[{\"_logTime\":1567333011693,\"_eventName\":\"spin_result\",\"_valueToSum\":0,\"fb_currency\":\"INR\",\"additional_bet_index\":0,\"battle_id\":\"N/A\",\"bet_amount\":9,\"bet_level\":1,\"bet_multiplier\":1,\"coin_balance\":9466052,\"current_module_name\":\"CasinoGameModule\",\"days_in_game\":0,\"extra_param\":\"N/A\",\"fb_profile\":\"0\",\"featureGameType\":\"N/A\",\"game_fps\":30,\"game_id\":\"fireEagleBase\",\"game_name\":\"FireEagleSlots\",\"gem_balance\":0,\"graphicsQuality\":\"HD\",\"idfa\":\"2bf99787-33d2-4ae2-a76a-c49672f97252\",\"internetReachability\":\"ReachableViaLocalAreaNetwork\",\"isLowEndDevice\":\"False\",\"is_auto_spin\":\"False\",\"is_turbo\":\"False\",\"isf\":\"False\",\"ishighroller\":\"False\",\"jackpot_win_amount\":90,\"jackpot_win_type\":\"Silver\",\"level\":6,\"lifetime_gem_balance\":0,\"no_of_spin\":1,\"player_total_battles\":0,\"player_total_shields\":0,\"start_date\":\"2019-08-01\",\"total_payments\":0,\"tournament_id\":\"T1561970819\",\"userId\":\"c82cbdff-e5be-4009-ac78-cdeea09ab4b1\",\"versionSessionCount\":2,\"win_amount\":0,\"fb_content_id\":[\"123\",\"345\"]}]", - "ud[em]": "48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08", - "advertiser_tracking_enabled": "0", - "application_tracking_enabled": "0", - "event": "CUSTOM_APP_EVENTS" - } - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "statusCode": 200 - } -] diff --git a/test/__tests__/data/fb_router_input.json b/test/__tests__/data/fb_router_input.json deleted file mode 100644 index 0fdcf2dd76..0000000000 --- a/test/__tests__/data/fb_router_input.json +++ /dev/null @@ -1,245 +0,0 @@ -[ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": 123 - }, - { - "product_id": 345 - }, - { - "product_id": 567 - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - }, - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "destination_props": { - "Fb": { - "app_id": "RudderFbApp" - } - }, - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi", - "type": "Android" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "screen": { - "height": "100", - "density": 50 - }, - "traits": { - "email": "abc@gmail.com", - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true, - "All": false, - "GA": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "revenue": 400, - "currency": "GBP", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0, - "products": [ - { - "product_id": 123 - }, - { - "product_id": 345 - }, - { - "product_id": 567 - } - ] - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - } - } -] diff --git a/test/__tests__/data/fb_router_output.json b/test/__tests__/data/fb_router_output.json deleted file mode 100644 index 5dd568cca5..0000000000 --- a/test/__tests__/data/fb_router_output.json +++ /dev/null @@ -1,40 +0,0 @@ -[ - { - "metadata": [ - { - "jobId": 1 - } - ], - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - }, - "destination": { - "Config": { - "appID": "RudderFbApp" - } - }, - "batched": false, - "statusCode": 400, - "error": "If properties.revenue is present, properties.currency is required." - }, - { - "metadata": [ - { - "jobId": 2 - } - ], - "destination": { - "Config": { - "appID": "RudderFbApp" - } - }, - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - }, - "batched": false, - "statusCode": 400, - "error": "Value of properties.products.sub.product_id is not of valid type. It should be of type string" - } -] diff --git a/test/__tests__/data/firehose_input.json b/test/__tests__/data/firehose_input.json deleted file mode 100644 index ddf3d93073..0000000000 --- a/test/__tests__/data/firehose_input.json +++ /dev/null @@ -1,431 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "track", - "to": "rudderstack-test-firehose" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "product added", - "to": "rudderstack-test-firehose" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "*", - "to": "rudderstack-test-firehose" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "test event", - "to": "rudderstack-test-firehose" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "*", - "to": "rudderstack-test-firehose" - }, - { - "from": "track", - "to": "rudderstack-test-firehose-1" - }, - { - "from": "product added", - "to": "rudderstack-test-firehose-2" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "*", - "to": "rudderstack-test-firehose" - }, - { - "from": "track", - "to": "rudderstack-test-firehose-1" - } - ] - } - } - }, - { - "destination": { - "Config": { - "region": "us-east-1", - "accessKeyID": "abc", - "accessKey": "xyz", - "mapEvents": [ - { - "from": "*", - "to": "rudderstack-test-firehose" - }, - { - "from": "product added", - "to": "rudderstack-test-firehose-1" - } - ] - }, - "DestinationDefinition": { - "DisplayName": "firehose", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "FIREHOSE" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Braze", - "Transformations": [] - }, - "metadata": { - "sourceType": "metadata.sourceType", - "destinationType": "metadata.destinationType", - "k8_namespace": "metadata.namespace" - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - } -] diff --git a/test/__tests__/data/firehose_output.json b/test/__tests__/data/firehose_output.json deleted file mode 100644 index 862e3b985c..0000000000 --- a/test/__tests__/data/firehose_output.json +++ /dev/null @@ -1,282 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "00000000000000000000000000", - "deliveryStreamMapTo": "rudderstack-test-firehose" - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "00000000000000000000000000", - "deliveryStreamMapTo": "rudderstack-test-firehose" - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "00000000000000000000000000", - "deliveryStreamMapTo": "rudderstack-test-firehose" - }, - { - "statusCode": 400, - "error": "No delivery stream set for this event" - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "00000000000000000000000000", - "deliveryStreamMapTo": "rudderstack-test-firehose-2" - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "00000000000000000000000000", - "deliveryStreamMapTo": "rudderstack-test-firehose-1" - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "00000000000000000000000000", - "deliveryStreamMapTo": "rudderstack-test-firehose" - } -] diff --git a/test/__tests__/data/google_adwords_remarketing_lists_input.json b/test/__tests__/data/google_adwords_remarketing_lists_input.json index aa69908518..4b8666fa27 100644 --- a/test/__tests__/data/google_adwords_remarketing_lists_input.json +++ b/test/__tests__/data/google_adwords_remarketing_lists_input.json @@ -3714,7 +3714,7 @@ "typeOfList": "General" } }, - "message": { + "message": { "anonymousId": "24ed22ae-0681-4882-8c33-012e298e1c17", "channel": "sources", "context": { @@ -3776,7 +3776,7 @@ "typeOfList": "General" } }, - "message": { + "message": { "anonymousId": "24ed22ae-0681-4882-8c33-012e298e1c17", "channel": "sources", "context": { diff --git a/test/__tests__/data/googlepubsub_input.json b/test/__tests__/data/googlepubsub_input.json deleted file mode 100644 index 2b8f72aa00..0000000000 --- a/test/__tests__/data/googlepubsub_input.json +++ /dev/null @@ -1,610 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "test" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "product added", - "to": "test" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "*", - "to": "test" - } - ] - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "test event", - "to": "test" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "test" - }, - { - "from": "*", - "to": "test a" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "test" - }, - { - "from": "*", - "to": "test a" - }, - { - "from": "product added", - "to": "test b" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "Test-Topic" - } - ], - "eventToAttributesMap": [ - { - "from": "track", - "to": "name" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "Test-Topic" - } - ], - "eventToAttributesMap": [ - { - "from": "track", - "to": "url" - }, - { - "from": "track", - "to": "title" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "Test-Topic" - } - ], - "eventToAttributesMap": [ - { - "from": "track", - "to": "url" - }, - { - "from": "track", - "to": "title" - }, - { - "from": "product added", - "to": "referrer" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com", - "nestedObject": { - "this": "will be picked" - } - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "Test-Topic" - } - ], - "eventToAttributesMap": [ - { - "from": "track", - "to": "nestedObject.this" - } - ] - } - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com", - "nestedObject": { - "this": "will be picked" - } - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "Test-Topic" - } - ], - "eventToAttributesMap": [ - { - "from": "track", - "to": "properties.nestedObject.this" - } - ] - } - } - } -] diff --git a/test/__tests__/data/googlepubsub_output.json b/test/__tests__/data/googlepubsub_output.json deleted file mode 100644 index 0ed832af34..0000000000 --- a/test/__tests__/data/googlepubsub_output.json +++ /dev/null @@ -1,372 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "123456", - "topicId": "test", - "attributes": {} - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "123456", - "topicId": "test", - "attributes": {} - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "event": "product added", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "userId": "123456", - "topicId": "test", - "attributes": {} - }, - { - "statusCode": 400, - "error": "No topic set for this event" - }, - { - "statusCode": 400, - "error": "No topic set for this event" - }, - { - "statusCode": 400, - "error": "No topic set for this event" - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "test", - "attributes": {} - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "test b", - "attributes": {} - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "Test-Topic", - "attributes": { - "name": "Pizza" - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "Test-Topic", - "attributes": { - "url": "https://dominos.com", - "title": "Pizza" - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "type": "track", - "event": "product added", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "Test-Topic", - "attributes": { - "referrer": "https://google.com" - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com", - "nestedObject": { - "this": "will be picked" - } - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "Test-Topic", - "attributes": { - "this": "will be picked" - } - }, - { - "message": { - "sentAt": "2020-08-28T15:11:56.167Z", - "category": "Food", - "messageId": "node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba", - "anonymousId": "abcdeeeeeeeexxxx111", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "originalTimestamp": "2020-08-28T15:11:56.162Z", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com", - "nestedObject": { - "this": "will be picked" - } - }, - "type": "track", - "name": "Pizza", - "_metadata": { - "nodeVersion": "10.22.0" - } - }, - "userId": "abcdeeeeeeeexxxx111", - "topicId": "Test-Topic", - "attributes": { - "this": "will be picked" - } - } -] diff --git a/test/__tests__/data/googlesheets_input.json b/test/__tests__/data/googlesheets_input.json deleted file mode 100644 index 492d57d431..0000000000 --- a/test/__tests__/data/googlesheets_input.json +++ /dev/null @@ -1,564 +0,0 @@ -[ - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { "name": "RudderLabs JavaScript SDK", "version": "1.0.0" }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { "name": "OS-X", "version": "19.02.3" }, - "screen": { "density": 2 }, - "traits": { - "userId": "sheetuser001", - "firstName": "James", - "lastName": "Doe", - "address": { - "city": "Kolkata", - "country": "India", - "postalCode": "789003", - "state": "WB" - } - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "type": "identify", - "traits": { - "anonymousId": "anon_id", - "email": "jamesDoe@gmail.com", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "integrations": { "All": true }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "type": "track", - "userId": "userTest004", - "event": "Added to Cart", - "properties": { - "name": "HomePage", - "revenue": 5.99, - "value": 5.5, - "offer": "Discount", - "Sale": false - }, - "context": { - "ip": "14.5.67.21", - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { "name": "Android", "version": "9" }, - "screen": { "density": 420, "height": 1794, "width": 1080 }, - "timezone": "Asia/Kolkata" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - }, - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "type": "page", - "userId": "userTest004", - "anonymousId": "anon-id-new", - "name": "1mg Cart", - "properties": { - "title": "Cart", - "path": "/", - "Cart Value": 7800, - "revenue": 7500 - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - }, - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "type": "page", - "userId": "userTest005", - "anonymousId": "anon-id-test", - "name": "Viewed Home Screen", - "properties": { - "title": "Home", - "path": "/home" - }, - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - }, - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "type": "screen", - "name": "Trello home Screen", - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - }, - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id" - } - }, - "message": { - "type": "screen", - "name": "Trello home Screen", - "context": { - "ip": "14.5.67.21", - "library": { - "name": "http" - } - }, - "timestamp": "2020-02-02T00:23:09.544Z" - } - } -] diff --git a/test/__tests__/data/googlesheets_output.json b/test/__tests__/data/googlesheets_output.json deleted file mode 100644 index 23b2f2f01b..0000000000 --- a/test/__tests__/data/googlesheets_output.json +++ /dev/null @@ -1,345 +0,0 @@ -[ - { - "batch": { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "84e26acc-56a5-4835-8233-591137fca468" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "James" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "Doe" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "1614775793" - }, - "4": { - "attributeKey": "City", - "attributeValue": "kolkata" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "India" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": "" - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "1.0.0" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "RudderLabs JavaScript SDK" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "RudderLabs JavaScript SDK" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "0.0.0.0" - } - } - }, - "spreadSheet": "rudder_sheet", - "spreadSheetId": "rudder_sheet_id" - }, - { - "batch": { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "" - }, - "4": { - "attributeKey": "City", - "attributeValue": "" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": 5.99 - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "Discount" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": "" - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": 5.99 - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "1" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "RudderAndroidClient" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "com.rudderstack.android.sdk.core" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "14.5.67.21" - } - } - }, - "spreadSheet": "rudder_sheet", - "spreadSheetId": "rudder_sheet_id" - }, - { - "batch": { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "" - }, - "4": { - "attributeKey": "City", - "attributeValue": "" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": 7500 - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "Cart" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": 7800 - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": 7500 - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "http" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "14.5.67.21" - } - } - }, - "spreadSheet": "rudder_sheet", - "spreadSheetId": "rudder_sheet_id" - }, - { - "batch": { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "" - }, - "4": { - "attributeKey": "City", - "attributeValue": "" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "Home" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": "" - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "http" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "14.5.67.21" - } - } - }, - "spreadSheet": "rudder_sheet", - "spreadSheetId": "rudder_sheet_id" - }, - { - "batch": { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "" - }, - "4": { - "attributeKey": "City", - "attributeValue": "" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": "" - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "http" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "14.5.67.21" - } - } - }, - "spreadSheet": "rudder_sheet", - "spreadSheetId": "rudder_sheet_id" - }, - { - "error": "No Spread Sheet set for this event" - } -] diff --git a/test/__tests__/data/googlesheets_router_input.json b/test/__tests__/data/googlesheets_router_input.json deleted file mode 100644 index e675d25bd9..0000000000 --- a/test/__tests__/data/googlesheets_router_input.json +++ /dev/null @@ -1,245 +0,0 @@ -[ - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { "name": "RudderLabs JavaScript SDK", "version": "1.0.0" }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { "name": "OS-X", "version": "19.02.3" }, - "screen": { "density": 2 }, - "traits": { - "userId": "sheetuser001", - "firstName": "James", - "lastName": "Doe", - "address": { - "city": "Kolkata", - "country": "India", - "postalCode": "789003", - "state": "WB" - } - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "type": "identify", - "traits": { - "anonymousId": "anon_id", - "email": "jamesDoe@gmail.com", - "name": "James Doe", - "phone": "92374162212", - "gender": "M", - "employed": true, - "birthday": "1614775793", - "education": "Science", - "graduate": true, - "married": true, - "customerType": "Prime", - "custom_tags": ["Test_User", "Interested_User", "DIY_Hobby"], - "custom_mappings": { - "Office": "Trastkiv", - "Country": "Russia" - }, - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 789223, - "state": "WB", - "street": "" - } - }, - "integrations": { "All": true }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "metadata": { - "jobId": 1 - } - }, - { - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - }, - "message": { - "type": "track", - "userId": "userTest004", - "event": "Added to Cart", - "properties": { - "name": "HomePage", - "revenue": 5.99, - "value": 5.5, - "offer": "Discount", - "Sale": false - }, - "context": { - "ip": "14.5.67.21", - "app": { - "build": "1", - "name": "RudderAndroidClient", - "namespace": "com.rudderstack.demo.android", - "version": "1.0" - }, - "device": { - "id": "7e32188a4dab669f", - "manufacturer": "Google", - "model": "Android SDK built for x86", - "name": "generic_x86", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "0.1.4" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { "name": "Android", "version": "9" }, - "screen": { "density": 420, "height": 1794, "width": 1080 }, - "timezone": "Asia/Kolkata" - }, - "timestamp": "2020-02-02T00:23:09.544Z" - }, - "metadata": { - "jobId": 2 - } - } -] diff --git a/test/__tests__/data/googlesheets_router_output.json b/test/__tests__/data/googlesheets_router_output.json deleted file mode 100644 index 6370a9fa3f..0000000000 --- a/test/__tests__/data/googlesheets_router_output.json +++ /dev/null @@ -1,213 +0,0 @@ -[ - { - "batchedRequest": { - "batch": [ - { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "84e26acc-56a5-4835-8233-591137fca468" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "James" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "Doe" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "1614775793" - }, - "4": { - "attributeKey": "City", - "attributeValue": "kolkata" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "India" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": "" - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": "" - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "1.0.0" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "RudderLabs JavaScript SDK" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "RudderLabs JavaScript SDK" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "0.0.0.0" - } - } - }, - { - "message": { - "0": { - "attributeKey": "messageId", - "attributeValue": "" - }, - "1": { - "attributeKey": "First Name", - "attributeValue": "" - }, - "2": { - "attributeKey": "Last Name", - "attributeValue": "" - }, - "3": { - "attributeKey": "Birthday", - "attributeValue": "" - }, - "4": { - "attributeKey": "City", - "attributeValue": "" - }, - "5": { - "attributeKey": "Country", - "attributeValue": "" - }, - "6": { - "attributeKey": "Revenue", - "attributeValue": 5.99 - }, - "7": { - "attributeKey": "Offer", - "attributeValue": "Discount" - }, - "8": { - "attributeKey": "Title Page", - "attributeValue": "" - }, - "9": { - "attributeKey": "Cart Value", - "attributeValue": "" - }, - "10": { - "attributeKey": "Revenue", - "attributeValue": 5.99 - }, - "11": { - "attributeKey": "App Build", - "attributeValue": "1" - }, - "12": { - "attributeKey": "App Name", - "attributeValue": "RudderAndroidClient" - }, - "13": { - "attributeKey": "Library Name", - "attributeValue": "com.rudderstack.android.sdk.core" - }, - "14": { - "attributeKey": "IP", - "attributeValue": "14.5.67.21" - } - } - } - ], - "spreadSheetId": "rudder_sheet_id", - "spreadSheet": "rudder_sheet" - }, - "metadata": [ - { - "jobId": 1 - }, - { - "jobId": 2 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "Config": { - "credentials": "{ sheets credentials }", - "eventKeyMap": [ - { - "from": "firstName", - "to": "First Name" - }, - { - "from": "lastName", - "to": "Last Name" - }, - { - "from": "birthday", - "to": "Birthday" - }, - { - "from": "address.city", - "to": "City" - }, - { - "from": "address.country", - "to": "Country" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "offer", - "to": "Offer" - }, - { - "from": "title", - "to": "Title Page" - }, - { - "from": "Cart Value", - "to": "Cart Value" - }, - { - "from": "revenue", - "to": "Revenue" - }, - { - "from": "context.app.build", - "to": "App Build" - }, - { - "from": "context.app.name", - "to": "App Name" - }, - { - "from": "context.library.name", - "to": "Library Name" - }, - { - "from": "context.ip", - "to": "IP" - } - ], - "sheetId": "rudder_sheet_id", - "sheetName": "rudder_sheet" - } - } - } -] diff --git a/test/__tests__/data/heap_input.json b/test/__tests__/data/heap_input.json deleted file mode 100644 index 944f661615..0000000000 --- a/test/__tests__/data/heap_input.json +++ /dev/null @@ -1,516 +0,0 @@ -[ - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "fca2e71a-5d30-48e1-ba45-761c16e3820f", - "originalTimestamp": "2020-01-16T13:21:59.076Z", - "receivedAt": "2020-01-16T18:52:03.871+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:22:03.85Z", - "timestamp": "2020-01-16T18:51:59.097+05:30", - "type": "identify", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-16T13:23:20.844Z", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "fca2e71a-5d30-48e1-ba45-761c16e3820f", - "originalTimestamp": "2020-01-16T13:21:59.076Z", - "receivedAt": "2020-01-16T18:52:03.871+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:22:03.85Z", - "timestamp": "2020-01-16T18:51:59.097+05:30", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-16T13:23:20.844Z", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "page", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "properties": { - "subject": "Welcome to My App!", - "variation": "A", - "idempotencyKey": "1234" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2021-02-16T18:53:20.866+05:30", - "originalTimestamp": "2021-02-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-17T13:23:20.844Z", - "properties": { - "subject": "Welcome to My App!", - "variation": "A", - "idempotencyKey": "1234" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-17T13:23:20.844Z", - "properties": { - "Location": { - "City": "Los Angeles", - "State": "CA" - }, - "hobbies": ["Music", "Running"] - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - }, - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-17T13:23:20.844Z", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - } -] diff --git a/test/__tests__/data/heap_output.json b/test/__tests__/data/heap_output.json deleted file mode 100644 index ac83648935..0000000000 --- a/test/__tests__/data/heap_output.json +++ /dev/null @@ -1,180 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/add_user_properties", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "properties": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "app_id": "" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "app_id": "", - "timestamp": "2020-01-16T18:53:20.866+05:30" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "statusCode": 400, - "error": "\"type\" is a required field and it must be a string" - }, - { - "statusCode": 400, - "error": "message type \"page\" not supported for \"heap\"" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "timestamp": "2021-02-16T18:53:20.866+05:30", - "idempotency_key": "1234", - "app_id": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "timestamp": "2020-01-16T18:53:20.866+05:30", - "idempotency_key": "1234", - "app_id": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "Location.City": "Los Angeles", - "Location.State": "CA", - "hobbies[0]": "Music", - "hobbies[1]": "Running" - }, - "timestamp": "2020-01-16T18:53:20.866+05:30", - "app_id": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "timestamp": "2020-01-16T18:53:20.866+05:30", - "app_id": "" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - } -] diff --git a/test/__tests__/data/heap_router_input.json b/test/__tests__/data/heap_router_input.json deleted file mode 100644 index 921ec684c1..0000000000 --- a/test/__tests__/data/heap_router_input.json +++ /dev/null @@ -1,193 +0,0 @@ -[ - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "metadata": { - "jobId": 1 - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "messageId": "fca2e71a-5d30-48e1-ba45-761c16e3820f", - "originalTimestamp": "2020-01-16T13:21:59.076Z", - "receivedAt": "2020-01-16T18:52:03.871+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:22:03.85Z", - "timestamp": "2020-01-16T18:51:59.097+05:30", - "type": "identify", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "metadata": { - "jobId": 2 - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-16T13:23:20.844Z", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - }, - { - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - }, - "metadata": { - "jobId": 3 - }, - "message": { - "anonymousId": "sampath", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36" - }, - "event": "Send Transactional Email", - "integrations": { - "All": true - }, - "messageId": "c0c5b892-0d54-449f-b85f-ebb39ff04e67", - "originalTimestamp": "2020-01-16T13:23:20.844Z", - "properties": { - "subject": "Welcome to My App!", - "variation": "A", - "idempotencyKey": "1234" - }, - "receivedAt": "2020-01-16T18:53:23.804+05:30", - "request_ip": "[::1]:62312", - "sentAt": "2020-01-16T13:23:23.782Z", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "type": "track", - "userId": "sampath" - } - } -] diff --git a/test/__tests__/data/heap_router_output.json b/test/__tests__/data/heap_router_output.json deleted file mode 100644 index 9a588f785b..0000000000 --- a/test/__tests__/data/heap_router_output.json +++ /dev/null @@ -1,154 +0,0 @@ -[ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/add_user_properties", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "properties": { - "anonymousId": "sampath", - "email": "sampath@gmail.com" - }, - "app_id": "" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "app_id": "", - "timestamp": "2020-01-16T18:53:20.866+05:30" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://heapanalytics.com/api/track", - "headers": { - "Content-Type": "application/json", - "Accept": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "identity": "sampath", - "event": "Send Transactional Email", - "properties": { - "subject": "Welcome to My App!", - "variation": "A" - }, - "app_id": "", - "timestamp": "2020-01-16T18:53:20.866+05:30", - "idempotency_key": "1234" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sampath" - }, - "metadata": [ - { - "jobId": 3 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "appId": "" - }, - "DestinationDefinition": { - "DisplayName": "Heap.io", - "ID": "1WTbl0l5GjOQKOvfmcGwk0T49kV", - "Name": "HEAP" - }, - "Enabled": true, - "ID": "1WTcDSEOE437e4ePH10BJNELXmE", - "Name": "heap test", - "Transformations": [] - } - } -] diff --git a/test/__tests__/data/hs_router_rETL_input.json b/test/__tests__/data/hs_router_rETL_input.json index facb28ae82..3e855855b4 100644 --- a/test/__tests__/data/hs_router_rETL_input.json +++ b/test/__tests__/data/hs_router_rETL_input.json @@ -216,5 +216,117 @@ "metadata": { "jobId": 3 } + }, + { + "message": { + "channel": "web", + "context": { + "mappedToDestination": true, + "externalId": [ + { + "identifierType": "email", + "id": "testhubspotdatetime@email.com", + "type": "HS-lead" + } + ], + "sources": { + "job_id": "24c5HJxHomh6YCngEOCgjS5r1KX/Syncher", + "task_id": "vw_rs_mailchimp_mocked_hg_data", + "version": "v1.8.1", + "batch_id": "f252c69d-c40d-450e-bcd2-2cf26cb62762", + "job_run_id": "c8el40l6e87v0c4hkbl0", + "task_run_id": "c8el40l6e87v0c4hkblg" + } + }, + "type": "identify", + "traits": { + "firstname": "Test Hubspot", + "anonymousId": "123451", + "country": "India", + "date_submitted": "2023-09-25T17:31:04.128251Z", + "date_created": "2023-03-30T01:02:03.05Z", + "date_closed": "2023-10-18T04:38:59.229347Z" + }, + "messageId": "50360b9c-ea8d-409c-b672-c9230f91cce5", + "originalTimestamp": "2019-10-15T09:35:31.288Z", + "anonymousId": "00000000000000000000000000", + "userId": "12345", + "integrations": { + "All": true + }, + "sentAt": "2019-10-14T09:03:22.563Z" + }, + "destination": { + "Config": { + "authorizationType": "newPrivateAppApi", + "accessToken": "dummy-access-token", + "hubID": "dummy-hubId", + "apiKey": "dummy-apikey", + "apiVersion": "newApi", + "lookupField": "lookupField", + "hubspotEvents": [ + { + "rsEventName": "Purchase", + "hubspotEventName": "pedummy-hubId_rs_hub_test", + "eventProperties": [ + { + "from": "Revenue", + "to": "value" + }, + { + "from": "Price", + "to": "cost" + } + ] + }, + { + "rsEventName": "Order Complete", + "hubspotEventName": "pedummy-hubId_rs_hub_chair", + "eventProperties": [ + { + "from": "firstName", + "to": "first_name" + }, + { + "from": "lastName", + "to": "last_name" + } + ] + } + ], + "eventFilteringOption": "disable", + "blacklistedEvents": [ + { + "eventName": "" + } + ], + "whitelistedEvents": [ + { + "eventName": "" + } + ] + }, + "secretConfig": {}, + "ID": "1mMy5cqbtfuaKZv1IhVQKnBdVwe", + "name": "Hubspot", + "enabled": true, + "workspaceId": "1TSN08muJTZwH8iCDmnnRt1pmLd", + "deleted": false, + "createdAt": "2020-12-30T08:39:32.005Z", + "updatedAt": "2021-02-03T16:22:31.374Z", + "destinationDefinition": { + "id": "1aIXqM806xAVm92nx07YwKbRrO9", + "name": "HS", + "displayName": "Hubspot", + "createdAt": "2020-04-09T09:24:31.794Z", + "updatedAt": "2021-01-11T11:03:28.103Z" + }, + "transformations": [], + "isConnectionEnabled": true, + "isProcessorEnabled": true + }, + "metadata": { + "jobId": 4 + } } ] diff --git a/test/__tests__/data/hs_router_rETL_output.json b/test/__tests__/data/hs_router_rETL_output.json index 5293a47cf9..c20694cdf4 100644 --- a/test/__tests__/data/hs_router_rETL_output.json +++ b/test/__tests__/data/hs_router_rETL_output.json @@ -20,6 +20,17 @@ "country": "India 1", "email": "testhubspot@email.com" } + }, + { + "properties": { + "firstname": "Test Hubspot", + "anonymousId": "123451", + "country": "India", + "email": "testhubspotdatetime@email.com", + "date_closed": 1697587200000, + "date_created": 1680134400000, + "date_submitted": 1695600000000 + } } ] }, @@ -32,6 +43,9 @@ "metadata": [ { "jobId": 3 + }, + { + "jobId": 4 } ], "batched": true, diff --git a/test/__tests__/data/impact.json b/test/__tests__/data/impact.json deleted file mode 100644 index 8bd6d2dced..0000000000 --- a/test/__tests__/data/impact.json +++ /dev/null @@ -1,1814 +0,0 @@ -[ - { - "description": "Identify Call", - "input": { - "message": { - "type": "identify", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": true, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "DeviceOs": "ios", - "AndroidId": "id", - "EventDate": "NOW", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "user123", - "PropertyId": "2323", - "DeviceOsVer": "1.12.3", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "CustomerEmail": "0c57fe03e81357df3acc1340bc9e353688e8f69e", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://trkapi.impact.com/PageLoad" - } - }, - { - "description": "Identify Call when enableIdentifyEvents is disabled from config", - "input": { - "message": { - "type": "identify", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { "error": "identify events are disabled from Config" } - }, - { - "description": "Account SID is empty", - "input": { - "message": { - "type": "identify", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": true, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "error": "accountSID : are required fields" - } - }, - { - "description": "API Key is empty", - "input": { - "message": { - "type": "identify", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "jskafsdhgfbjcdsxzjhfnerscd", - "apiKey": "", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": true, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "error": "apiKey : are required fields" - } - }, - { - "description": "campaignId is empty", - "input": { - "message": { - "type": "identify", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "jskafsdhgfbjcdsxzjhfnerscd", - "apiKey": "hjsfbnrrcldkbnfsjknfdkfjne", - "campaignId": "", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": true, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "error": "campaignId : are required fields" - } - }, - { - "description": "Track Call with products array to test conversion endpoint", - "input": { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "products": [ - { - "brand": "zara", - "category": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Track Call with products array without any custom products mapping", - "input": { - "message": { - "event": "Product Purchased", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "products": [ - { - "brand": "zara", - "category": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": "", - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Product Purchased", - "ItemQuantity1": 1, - "ItemCategory1": "wearables", - - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Track Call with products array to test conversion endpoint with a custom products mapping", - "input": { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "products": [ - { - "brand": "zara", - "variant": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemCategory1": "wearables", - "ItemPrice1": 332, - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Track Call with products array to test conversion endpoint with a custom products mapping and custom property mapping", - "input": { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "profit": 434, - "products": [ - { - "brand": "zara", - "variant": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "Money1": 434, - "OrderId": "9217374917471", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemCategory1": "wearables", - "ItemPrice1": 332, - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Track Call with products array to test conversion endpoint with OS as android", - "input": { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "profit": 434, - "products": [ - { - "brand": "zara", - "variant": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "Android", - "version": "9" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "device": { - "id": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "advertisingId": "435o4GRlm" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "Money1": 434, - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "GoogAId": "435o4GRlm", - "OrderId": "9217374917471", - "DeviceOs": "Android", - "ItemSku1": "G-32", - "AndroidId": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "DeviceOsVer": "9", - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemCategory1": "wearables", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Track Call with products array to test conversion endpoint with OS as ios", - "input": { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "profit": 434, - "products": [ - { - "brand": "zara", - "variant": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "iOS", - "version": "15.2" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "device": { - "id": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "advertisingId": "435o4GRlm" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppleIfa": "435o4GRlm", - "AppleIfv": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "Money1": 434, - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "DeviceOs": "iOS", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "DeviceOsVer": "15.2", - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemCategory1": "wearables", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Page Call", - "input": { - "message": { - "type": "page", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": true, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "DeviceOs": "ios", - "AndroidId": "id", - "EventDate": "NOW", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "user123", - "PropertyId": "2323", - "DeviceOsVer": "1.12.3", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "CustomerEmail": "0c57fe03e81357df3acc1340bc9e353688e8f69e", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://trkapi.impact.com/PageLoad" - } - }, - { - "description": "Screen Call", - "input": { - "message": { - "type": "screen", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": true, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "DeviceOs": "ios", - "AndroidId": "id", - "EventDate": "NOW", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "user123", - "PropertyId": "2323", - "DeviceOsVer": "1.12.3", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "CustomerEmail": "0c57fe03e81357df3acc1340bc9e353688e8f69e", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://trkapi.impact.com/PageLoad" - } - }, - { - "description": "Unsupported message type", - "input": { - "message": { - "event": "Order Completed", - "type": "group", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "products": [ - { - "brand": "zara", - "category": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "error": "Event type group is not supported" - } - }, - { - "description": "Event type is empty", - "input": { - "message": { - "event": "Order Completed", - "type": "", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "products": [ - { - "brand": "zara", - "category": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": { - "error": "Event type is required" - } - }, - { - "description": "Track Call with products array to test conversion endpoint", - "input": { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "brand": "zara", - "category": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemCategory1": "wearables", - "ItemQuantity1": 1, - "ItemPromoCode1": "10OFF-ROCKET", - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - }, - { - "description": "Track Call with products array to test conversion endpoint with event mapping", - "input": { - "message": { - "event": "Product Ordered", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "profit": 434, - "products": [ - { - "brand": "zara", - "variant": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "iOS", - "version": "15.2" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "device": { - "id": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "advertisingId": "435o4GRlm" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Ordered" }], - "installEventNames": [{ "eventName": "Product Ordered" }] - } - } - }, - "output": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppleIfa": "435o4GRlm", - "AppleIfv": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "Money1": 434, - "AppName": "RudderLabs JavaScript SDK", - "OrderId": "9217374917471", - "DeviceOs": "iOS", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "DeviceOsVer": "15.2", - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Product Ordered", - "ItemCategory1": "wearables", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - }, - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppleIfa": "435o4GRlm", - "AppleIfv": "78c53c15-32a1-4b65-adac-bec2d7bb8fab", - "Money1": 434, - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "DeviceOs": "iOS", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "DeviceOsVer": "15.2", - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Product Ordered", - "ItemCategory1": "wearables", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ] - } -] diff --git a/test/__tests__/data/impact_router.json b/test/__tests__/data/impact_router.json deleted file mode 100644 index 87ed79025e..0000000000 --- a/test/__tests__/data/impact_router.json +++ /dev/null @@ -1,305 +0,0 @@ -[ - { - "input": [ - { - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": true, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - }, - "metadata": { - "jobId": 1 - }, - "message": { - "type": "identify", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "user123", - "channel": "web", - "context": { - "os": { - "name": "android", - "version": "1.12.3" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "traits": { - "email": "user123@email.com", - "phone": "+917836362334", - "userId": "user123" - }, - "locale": "en-US", - "device": { - "token": "token", - "id": "id", - "type": "ios" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - } - }, - { - "message": { - "event": "Order Completed", - "type": "track", - "sentAt": "2021-01-03T17:02:53.195Z", - "userId": "Testab", - "channel": "web", - "properties": { - "orderId": "9217374917471", - "coupon": "10OFF-ROCKET", - "clickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "products": [ - { - "brand": "zara", - "category": "wearables", - "name": "Monopoly", - "price": 332, - "quantity": 1, - "sku": "G-32" - } - ] - }, - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.1.11", - "namespace": "com.rudderlabs.javascript" - }, - "locale": "en-US", - "screen": { - "density": 2 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.11" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0" - }, - "rudderId": "8f8fa6b5-8e24-489c-8e22-61f23f2e364f", - "messageId": "2116ef8c-efc3-4ca4-851b-02ee60dad6ff", - "anonymousId": "97c46c81-3140-456d-b2a9-690d70aaca35", - "originalTimestamp": "NOW" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - } - ], - "output": [ - { - "batchedRequest": { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "DeviceOs": "ios", - "AndroidId": "id", - "EventDate": "NOW", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "user123", - "PropertyId": "2323", - "DeviceOsVer": "1.12.3", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "CustomerEmail": "0c57fe03e81357df3acc1340bc9e353688e8f69e", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://trkapi.impact.com/PageLoad" - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "sku", - "to": "ItemSku" - } - ], - "enableIdentifyEvents": true, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - }, - { - "batchedRequest": [ - { - "body": { - "XML": {}, - "FORM": { - "AppVer": "1.1.11", - "AppName": "RudderLabs JavaScript SDK", - "ClickId": "wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80", - "OrderId": "9217374917471", - "ItemSku1": "G-32", - "EventDate": "NOW", - "ItemName1": "Monopoly", - "UserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0", - "AppPackage": "1.0.0", - "CampaignId": "23224", - "CustomerId": "Testab", - "ItemBrand1": "zara", - "ItemPrice1": 332, - "EventTypeId": "56446", - "ImpactAppId": "2323", - "DeviceLocale": "en-US", - "EventTypeCode": "Order Completed", - "ItemQuantity1": 1, - "OrderPromoCode": "10OFF-ROCKET", - "CustomProfileId": "97c46c81-3140-456d-b2a9-690d70aaca35" - }, - "JSON": {}, - "JSON_ARRAY": {} - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "Content-Type": "application/x-www-form-urlencoded", - "Authorization": "Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpkdW1teUFwaUtleQ==" - }, - "version": "1", - "endpoint": "https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions" - } - ], - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "accountSID": "dfsgertrtff3erfc34rfwf", - "apiKey": "dummyApiKey", - "campaignId": "23224", - "impactAppId": "2323", - "eventTypeId": "56446", - "enableEmailHashing": true, - "rudderToImpactProperty": [ - { - "from": "properties.profit", - "to": "Money1" - } - ], - "productsMapping": [ - { - "from": "variant", - "to": "ItemCategory" - } - ], - "enableIdentifyEvents": false, - "enablePageEvents": false, - "enableScreenEvents": false, - "actionEventNames": [{ "eventName": "Product Purchased" }], - "installEventNames": [{ "eventName": "App Installed" }] - } - } - } - ] - } -] diff --git a/test/__tests__/data/indicative_input.json b/test/__tests__/data/indicative_input.json deleted file mode 100644 index 44d7487bb9..0000000000 --- a/test/__tests__/data/indicative_input.json +++ /dev/null @@ -1,1790 +0,0 @@ -[ - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "userId": "123456", - "type": "identify", - "traits": { - "anonymousId": "anon_id", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "request_ip": "1.1.1.1", - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "request_ip": "1.1.1.1", - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "name": "ApplicationLoaded", - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "request_ip": "1.1.1.1", - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "request_ip": "1.1.1.1", - "type": "screen", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "name": "Home", - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "originalTimestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "79313729-7fe5-4204-963a-dc46f4205e4e", - "originalTimestamp": "2020-01-24T06:29:02.366Z", - "previousId": "test_previous_id", - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53711", - "sentAt": "2020-01-24T06:29:02.366Z", - "timestamp": "2020-01-24T11:59:02.403+05:30", - "type": "alias", - "userId": "test_new_user_id" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "79313729-7fe5-4204-963a-dc46f4205e4e", - "originalTimestamp": "2020-01-24T06:29:02.366Z", - "previousId": "test_previous_id", - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53711", - "sentAt": "2020-01-24T06:29:02.366Z", - "timestamp": "2020-01-24T11:59:02.403+05:30", - "userId": "test_new_user_id" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "type": "group", - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "test_anon_id", - "type": "identify", - "traits": { - "anonymousId": "test_anon_id", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "searchResponse": { - "hits": [ - { - "Vrm": "026067", - "Make": "AUDI", - "Year": 2010, - "DName": "PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH", - "Model": "A5", - "Price": 13990, - "Mileage": 163000, - "DealerId": "1f338e5b-740f-6a38-bee1-ecff97acda69", - "Derivative": "A5 Cabrio 1.8 TFSI Cabrio" - }, - { - "Vrm": "4527", - "Make": "AUDI", - "Year": 2009, - "DName": "Stephan Walters - Autohaus Walters", - "Model": "A5", - "Price": 14450, - "Mileage": 99990, - "DealerId": "68c7b5ae-8cf0-6595-9fd2-8644b9682838", - "Derivative": "A5 Cabrio 40 TFSI S tronic S line Cabrio" - }, - { - "Vrm": "10007", - "Make": "AUDI", - "Year": 2017, - "DName": "ps kfz-vertrieb GmbH", - "Model": "A5", - "Price": 14580, - "Mileage": 151500, - "DealerId": "a107e9a8-ac3c-6790-bb84-052dd5eed5e8", - "Derivative": "A5 Sportback 2.0 TDI ultra S tronic Coupe" - }, - { - "Vrm": "031983", - "Make": "AUDI", - "Year": 2012, - "DName": "Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\"", - "Model": "A5", - "Price": 10980, - "Mileage": 197335, - "DealerId": "8a574713-2fbe-6f0c-b1a8-39ba7ee683fc", - "Derivative": "A5 2.0 TDI Sportback DPF multitronic Coupe" - }, - { - "Vrm": "042012", - "Make": "AUDI", - "Year": 2015, - "DName": "Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\"", - "Model": "A5", - "Price": 15980, - "Mileage": 144205, - "DealerId": "8a574713-2fbe-6f0c-b1a8-39ba7ee683fc", - "Derivative": "A5 Coupe 35 TDI S tronic S line Coupe" - }, - { - "Vrm": "002743", - "Make": "AUDI", - "Year": 2010, - "DName": "Auto Mayer e.K.Inh. Skelcim Imeri", - "Model": "A5", - "Price": 13980, - "Mileage": 121015, - "DealerId": "972258cb-132f-62a9-bd31-e02f9f70fa7b", - "Derivative": "A5 Cabrio 2.0 TDI DPF Cabrio" - }, - { - "Vrm": "205536_3895", - "Make": "AUDI", - "Year": 2011, - "DName": "Autohaus Löbau GmbH", - "Model": "A5", - "Price": 12790, - "Mileage": 89236, - "DealerId": "9e697219-293e-63a0-884a-2d03f77bbbef", - "Derivative": "A5 2.0 TDI Sportback DPF Coupe" - }, - { - "Vrm": "116265", - "Make": "AUDI", - "Year": 2016, - "DName": "Elspass Autoland GmbH & Co. KG", - "Model": "A1", - "Price": 14690, - "Mileage": 42800, - "DealerId": "00c1bf3f-b19d-6198-a509-c7f2ff73c29a", - "Derivative": "A1 1.0 TFSI ultra Limousine" - }, - { - "Vrm": "010159", - "Make": "AUDI", - "Year": 2013, - "DName": "Hermann Meyer GmbH & Co. KG", - "Model": "A1", - "Price": 9950, - "Mileage": 93996, - "DealerId": "35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "Derivative": "A1 1.4 TFSI Ambition Limousine" - }, - { - "Vrm": "010178", - "Make": "AUDI", - "Year": 2016, - "DName": "Hermann Meyer GmbH & Co. KG", - "Model": "A1", - "Price": 12950, - "Mileage": 69454, - "DealerId": "35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "Derivative": "A1 1.4 TFSI Sportback S tronic Attraction Limousine" - } - ], - "page": 0, - "merge": { - "nbHitsMax": 1000, - "nbHitslimit": 1000, - "nbSearchers": 2, - "nbHitsProcessed": 10, - "personalization": { - "impact": 100, - "enabled": true, - "profile": { - "time": 0, - "facets": {}, - "taskID": 0 - }, - "percentile": 0, - "nbPersoScanned": 0, - "nbPersoSkipped": 0, - "nbPersoReranked": 0, - "nbPersoReturned": 0, - "nbPersoSelected": 0, - "nbRelevanceBuckets": 8 - }, - "lastHitToDisplay": 10, - "nbHitsNumberingEnd": 10 - }, - "nbHits": 13, - "nbPages": 2, - "queryID": "c5a176f8493236fcbfe69c3298d41659", - "indexUsed": "Germany_prod_stock_Finance_0", - "serverUsed": "d85-de-1.algolia.net", - "hitsPerPage": 10, - "parsedQuery": "audi a5", - "timeoutHits": false, - "appliedRules": [ - { - "objectID": "1539345377254" - }, - { - "objectID": "1548767806494" - } - ], - "facets_stats": { - "Doors": { - "avg": 3, - "max": 5, - "min": 2, - "sum": 48 - }, - "Price": { - "avg": 13210, - "max": 15980, - "min": 9950, - "sum": 171730 - }, - "VrmYear": { - "avg": 2013, - "max": 2017, - "min": 2009, - "sum": 26171 - } - }, - "timeoutCounts": false - } - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "ID": "1afmecIpsJm7D72aRTksxyODrwR", - "Name": "Segment", - "DestinationDefinition": { - "ID": "1afjjahf0X5lSyNze7Xh7aqJs11", - "Name": "SEGMENT", - "DisplayName": "Segment", - "Config": { - "excludeKeys": [], - "includeKeys": [] - } - }, - "Config": { - "writeKey": "abcdefghijklmnopqrstuvwxyz" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.1-rc.2" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.1-rc.2" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index4.html" - }, - "screen": { - "density": 2 - }, - "traits": { - "age": 23, - "email": "testmp@email.com", - "firstname": "Test Transformer" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36" - }, - "event": "JuhuSearchResults", - "integrations": { - "All": true - }, - "messageId": "584fde02-901a-4964-a4a0-4078b999d5b2", - "originalTimestamp": "2020-04-17T14:55:31.372Z", - "traits": { - "searchResponse": { - "hits": [ - { - "Vrm": "026067", - "Make": "AUDI", - "Year": 2010, - "DName": "PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH", - "Model": "A5", - "Price": 13990, - "Mileage": 163000, - "DealerId": "1f338e5b-740f-6a38-bee1-ecff97acda69", - "Derivative": "A5 Cabrio 1.8 TFSI Cabrio" - }, - { - "Vrm": "4527", - "Make": "AUDI", - "Year": 2009, - "DName": "Stephan Walters - Autohaus Walters", - "Model": "A5", - "Price": 14450, - "Mileage": 99990, - "DealerId": "68c7b5ae-8cf0-6595-9fd2-8644b9682838", - "Derivative": "A5 Cabrio 40 TFSI S tronic S line Cabrio" - }, - { - "Vrm": "10007", - "Make": "AUDI", - "Year": 2017, - "DName": "ps kfz-vertrieb GmbH", - "Model": "A5", - "Price": 14580, - "Mileage": 151500, - "DealerId": "a107e9a8-ac3c-6790-bb84-052dd5eed5e8", - "Derivative": "A5 Sportback 2.0 TDI ultra S tronic Coupe" - }, - { - "Vrm": "031983", - "Make": "AUDI", - "Year": 2012, - "DName": "Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\"", - "Model": "A5", - "Price": 10980, - "Mileage": 197335, - "DealerId": "8a574713-2fbe-6f0c-b1a8-39ba7ee683fc", - "Derivative": "A5 2.0 TDI Sportback DPF multitronic Coupe" - }, - { - "Vrm": "042012", - "Make": "AUDI", - "Year": 2015, - "DName": "Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\"", - "Model": "A5", - "Price": 15980, - "Mileage": 144205, - "DealerId": "8a574713-2fbe-6f0c-b1a8-39ba7ee683fc", - "Derivative": "A5 Coupe 35 TDI S tronic S line Coupe" - }, - { - "Vrm": "002743", - "Make": "AUDI", - "Year": 2010, - "DName": "Auto Mayer e.K.Inh. Skelcim Imeri", - "Model": "A5", - "Price": 13980, - "Mileage": 121015, - "DealerId": "972258cb-132f-62a9-bd31-e02f9f70fa7b", - "Derivative": "A5 Cabrio 2.0 TDI DPF Cabrio" - }, - { - "Vrm": "205536_3895", - "Make": "AUDI", - "Year": 2011, - "DName": "Autohaus Löbau GmbH", - "Model": "A5", - "Price": 12790, - "Mileage": 89236, - "DealerId": "9e697219-293e-63a0-884a-2d03f77bbbef", - "Derivative": "A5 2.0 TDI Sportback DPF Coupe" - }, - { - "Vrm": "116265", - "Make": "AUDI", - "Year": 2016, - "DName": "Elspass Autoland GmbH & Co. KG", - "Model": "A1", - "Price": 14690, - "Mileage": 42800, - "DealerId": "00c1bf3f-b19d-6198-a509-c7f2ff73c29a", - "Derivative": "A1 1.0 TFSI ultra Limousine" - }, - { - "Vrm": "010159", - "Make": "AUDI", - "Year": 2013, - "DName": "Hermann Meyer GmbH & Co. KG", - "Model": "A1", - "Price": 9950, - "Mileage": 93996, - "DealerId": "35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "Derivative": "A1 1.4 TFSI Ambition Limousine" - }, - { - "Vrm": "010178", - "Make": "AUDI", - "Year": 2016, - "DName": "Hermann Meyer GmbH & Co. KG", - "Model": "A1", - "Price": 12950, - "Mileage": 69454, - "DealerId": "35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "Derivative": "A1 1.4 TFSI Sportback S tronic Attraction Limousine" - } - ], - "page": 0, - "merge": { - "nbHitsMax": 1000, - "nbHitslimit": 1000, - "nbSearchers": 2, - "nbHitsProcessed": 10, - "personalization": { - "impact": 100, - "enabled": true, - "profile": { - "time": 0, - "facets": {}, - "taskID": 0 - }, - "percentile": 0, - "nbPersoScanned": 0, - "nbPersoSkipped": 0, - "nbPersoReranked": 0, - "nbPersoReturned": 0, - "nbPersoSelected": 0, - "nbRelevanceBuckets": 8 - }, - "lastHitToDisplay": 10, - "nbHitsNumberingEnd": 10 - }, - "nbHits": 13, - "nbPages": 2, - "queryID": "c5a176f8493236fcbfe69c3298d41659", - "indexUsed": "Germany_prod_stock_Finance_0", - "serverUsed": "d85-de-1.algolia.net", - "hitsPerPage": 10, - "parsedQuery": "audi a5", - "timeoutHits": false, - "appliedRules": [ - { - "objectID": "1539345377254" - }, - { - "objectID": "1548767806494" - } - ], - "facets_stats": { - "Doors": { - "avg": 3, - "max": 5, - "min": 2, - "sum": 48 - }, - "Price": { - "avg": 13210, - "max": 15980, - "min": 9950, - "sum": 171730 - }, - "VrmYear": { - "avg": 2013, - "max": 2017, - "min": 2009, - "sum": 26171 - } - }, - "timeoutCounts": false - } - }, - "receivedAt": "2020-04-17T20:25:31.401+05:30", - "request_ip": "[::1]:57365", - "sentAt": "2020-04-17T14:55:31.372Z", - "timestamp": "2020-04-17T20:25:31.401+05:30", - "name": "test page", - "type": "identify", - "userId": "user12345" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html" - } - }, - "request_ip": "1.1.1.1", - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html" - } - }, - "request_ip": "1.1.1.1", - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "searchResponse": { - "hits": [ - { - "Vrm": "026067", - "Make": "AUDI", - "Year": 2010, - "DName": "PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH", - "Model": "A5", - "Price": 13990, - "Mileage": 163000, - "DealerId": "1f338e5b-740f-6a38-bee1-ecff97acda69", - "Derivative": "A5 Cabrio 1.8 TFSI Cabrio" - }, - { - "Vrm": "4527", - "Make": "AUDI", - "Year": 2009, - "DName": "Stephan Walters - Autohaus Walters", - "Model": "A5", - "Price": 14450, - "Mileage": 99990, - "DealerId": "68c7b5ae-8cf0-6595-9fd2-8644b9682838", - "Derivative": "A5 Cabrio 40 TFSI S tronic S line Cabrio" - }, - { - "Vrm": "10007", - "Make": "AUDI", - "Year": 2017, - "DName": "ps kfz-vertrieb GmbH", - "Model": "A5", - "Price": 14580, - "Mileage": 151500, - "DealerId": "a107e9a8-ac3c-6790-bb84-052dd5eed5e8", - "Derivative": "A5 Sportback 2.0 TDI ultra S tronic Coupe" - }, - { - "Vrm": "031983", - "Make": "AUDI", - "Year": 2012, - "DName": "Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\"", - "Model": "A5", - "Price": 10980, - "Mileage": 197335, - "DealerId": "8a574713-2fbe-6f0c-b1a8-39ba7ee683fc", - "Derivative": "A5 2.0 TDI Sportback DPF multitronic Coupe" - }, - { - "Vrm": "042012", - "Make": "AUDI", - "Year": 2015, - "DName": "Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\"", - "Model": "A5", - "Price": 15980, - "Mileage": 144205, - "DealerId": "8a574713-2fbe-6f0c-b1a8-39ba7ee683fc", - "Derivative": "A5 Coupe 35 TDI S tronic S line Coupe" - }, - { - "Vrm": "002743", - "Make": "AUDI", - "Year": 2010, - "DName": "Auto Mayer e.K.Inh. Skelcim Imeri", - "Model": "A5", - "Price": 13980, - "Mileage": 121015, - "DealerId": "972258cb-132f-62a9-bd31-e02f9f70fa7b", - "Derivative": "A5 Cabrio 2.0 TDI DPF Cabrio" - }, - { - "Vrm": "205536_3895", - "Make": "AUDI", - "Year": 2011, - "DName": "Autohaus Löbau GmbH", - "Model": "A5", - "Price": 12790, - "Mileage": 89236, - "DealerId": "9e697219-293e-63a0-884a-2d03f77bbbef", - "Derivative": "A5 2.0 TDI Sportback DPF Coupe" - }, - { - "Vrm": "116265", - "Make": "AUDI", - "Year": 2016, - "DName": "Elspass Autoland GmbH & Co. KG", - "Model": "A1", - "Price": 14690, - "Mileage": 42800, - "DealerId": "00c1bf3f-b19d-6198-a509-c7f2ff73c29a", - "Derivative": "A1 1.0 TFSI ultra Limousine" - }, - { - "Vrm": "010159", - "Make": "AUDI", - "Year": 2013, - "DName": "Hermann Meyer GmbH & Co. KG", - "Model": "A1", - "Price": 9950, - "Mileage": 93996, - "DealerId": "35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "Derivative": "A1 1.4 TFSI Ambition Limousine" - }, - { - "Vrm": "010178", - "Make": "AUDI", - "Year": 2016, - "DName": "Hermann Meyer GmbH & Co. KG", - "Model": "A1", - "Price": 12950, - "Mileage": 69454, - "DealerId": "35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "Derivative": "A1 1.4 TFSI Sportback S tronic Attraction Limousine" - } - ], - "page": 0, - "merge": { - "nbHitsMax": 1000, - "nbHitslimit": 1000, - "nbSearchers": 2, - "nbHitsProcessed": 10, - "personalization": { - "impact": 100, - "enabled": true, - "profile": { - "time": 0, - "facets": {}, - "taskID": 0 - }, - "percentile": 0, - "nbPersoScanned": 0, - "nbPersoSkipped": 0, - "nbPersoReranked": 0, - "nbPersoReturned": 0, - "nbPersoSelected": 0, - "nbRelevanceBuckets": 8 - }, - "lastHitToDisplay": 10, - "nbHitsNumberingEnd": 10 - }, - "nbHits": 13, - "nbPages": 2, - "queryID": "c5a176f8493236fcbfe69c3298d41659", - "indexUsed": "Germany_prod_stock_Finance_0", - "serverUsed": "d85-de-1.algolia.net", - "hitsPerPage": 10, - "parsedQuery": "audi a5", - "timeoutHits": false, - "appliedRules": [ - { - "objectID": "1539345377254" - }, - { - "objectID": "1548767806494" - } - ], - "facets_stats": { - "Doors": { - "avg": 3, - "max": 5, - "min": 2, - "sum": 48 - }, - "Price": { - "avg": 13210, - "max": 15980, - "min": 9950, - "sum": 171730 - }, - "VrmYear": { - "avg": 2013, - "max": 2017, - "min": 2009, - "sum": 26171 - } - }, - "timeoutCounts": false - } - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "page": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "searchResponse": { - "primitiveArr1": ["abc", "def"], - "primitiveArr2": [1, 2, 3], - "arrOfArr": [ - ["abc", "def"], - [1, 2, 3] - ], - "emptyArr": [], - "complexArr1": [ - { - "crr1K1": { - "discardK1": "discardV1" - } - } - ] - } - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "campaign": {} - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "message": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSPonIAEmulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "kolkata", - "country": "India" - } - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "Product Clicked", - "integrations": { - "All": true - }, - "messageId": "1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06", - "properties": { - "revenue": "30", - "currency": "USD", - "quantity": "5", - "test_key_2": { - "test_child_key_1": "test_child_value_1" - }, - "price": "58.0" - }, - "originalTimestamp": "2020-05-25T18:37:10.917Z", - "type": "track", - "userId": "sample_user_id" - } - } -] diff --git a/test/__tests__/data/indicative_output.json b/test/__tests__/data/indicative_output.json deleted file mode 100644 index 55c78bd0ef..0000000000 --- a/test/__tests__/data/indicative_output.json +++ /dev/null @@ -1,1000 +0,0 @@ -[ - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/identify", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "uniqueId": "123456", - "properties": { - "email": "test@rudderstack.com", - "address.city": "kolkata", - "address.country": "India", - "address.postalCode": 712136, - "address.state": "WB", - "address.street": "", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/alias", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "previousId": "anon_id", - "newId": "123456", - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/identify", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "uniqueId": "123456", - "properties": { - "email": "test@rudderstack.com", - "address.city": "kolkata", - "address.country": "India", - "address.postalCode": 712136, - "address.state": "WB", - "address.street": "", - "ip": "0.0.0.0", - "age": 26, - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/alias", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "previousId": "123456", - "newId": "123456", - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "12345", - "eventName": "Page View ApplicationLoaded", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "eventTime": 1571051718299, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "12345", - "eventName": "Page View ApplicationLoaded", - "properties": { - "name": "ApplicationLoaded", - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "eventTime": 1571051718299, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "12345", - "eventName": "Page View", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "eventTime": 1571051718299, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "12345", - "eventName": "Screen View Home", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "eventTime": 1571051718299, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/alias", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "previousId": "test_previous_id", - "newId": "test_new_user_id", - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_new_user_id" - } - ], - { - "statusCode": 400, - "error": "Message Type is not present. Aborting message." - }, - { - "statusCode": 400, - "error": "Message type group not supported" - }, - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/identify", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "uniqueId": "test_anon_id", - "properties": { - "email": "test@rudderstack.com", - "address.city": "kolkata", - "address.country": "India", - "address.postalCode": 712136, - "address.state": "WB", - "address.street": "", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_anon_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "searchResponse.hits.Vrm": "026067,4527,10007,031983,042012,002743,205536_3895,116265,010159,010178", - "searchResponse.hits.Make": "AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI", - "searchResponse.hits.Year": "2010,2009,2017,2012,2015,2010,2011,2016,2013,2016", - "searchResponse.hits.DName": "PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH,Stephan Walters - Autohaus Walters,ps kfz-vertrieb GmbH,Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\",Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\",Auto Mayer e.K.Inh. Skelcim Imeri,Autohaus Löbau GmbH,Elspass Autoland GmbH & Co. KG,Hermann Meyer GmbH & Co. KG,Hermann Meyer GmbH & Co. KG", - "searchResponse.hits.Model": "A5,A5,A5,A5,A5,A5,A5,A1,A1,A1", - "searchResponse.hits.Price": "13990,14450,14580,10980,15980,13980,12790,14690,9950,12950", - "searchResponse.hits.Mileage": "163000,99990,151500,197335,144205,121015,89236,42800,93996,69454", - "searchResponse.hits.DealerId": "1f338e5b-740f-6a38-bee1-ecff97acda69,68c7b5ae-8cf0-6595-9fd2-8644b9682838,a107e9a8-ac3c-6790-bb84-052dd5eed5e8,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,972258cb-132f-62a9-bd31-e02f9f70fa7b,9e697219-293e-63a0-884a-2d03f77bbbef,00c1bf3f-b19d-6198-a509-c7f2ff73c29a,35d4fe7e-81a0-6e99-a575-6f62bffb8900,35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "searchResponse.hits.Derivative": "A5 Cabrio 1.8 TFSI Cabrio,A5 Cabrio 40 TFSI S tronic S line Cabrio,A5 Sportback 2.0 TDI ultra S tronic Coupe,A5 2.0 TDI Sportback DPF multitronic Coupe,A5 Coupe 35 TDI S tronic S line Coupe,A5 Cabrio 2.0 TDI DPF Cabrio,A5 2.0 TDI Sportback DPF Coupe,A1 1.0 TFSI ultra Limousine,A1 1.4 TFSI Ambition Limousine,A1 1.4 TFSI Sportback S tronic Attraction Limousine", - "searchResponse.page": 0, - "searchResponse.merge.nbHitsMax": 1000, - "searchResponse.merge.nbHitslimit": 1000, - "searchResponse.merge.nbSearchers": 2, - "searchResponse.merge.nbHitsProcessed": 10, - "searchResponse.merge.personalization.impact": 100, - "searchResponse.merge.personalization.enabled": true, - "searchResponse.merge.personalization.profile.time": 0, - "searchResponse.merge.personalization.profile.taskID": 0, - "searchResponse.merge.personalization.percentile": 0, - "searchResponse.merge.personalization.nbPersoScanned": 0, - "searchResponse.merge.personalization.nbPersoSkipped": 0, - "searchResponse.merge.personalization.nbPersoReranked": 0, - "searchResponse.merge.personalization.nbPersoReturned": 0, - "searchResponse.merge.personalization.nbPersoSelected": 0, - "searchResponse.merge.personalization.nbRelevanceBuckets": 8, - "searchResponse.merge.lastHitToDisplay": 10, - "searchResponse.merge.nbHitsNumberingEnd": 10, - "searchResponse.nbHits": 13, - "searchResponse.nbPages": 2, - "searchResponse.queryID": "c5a176f8493236fcbfe69c3298d41659", - "searchResponse.indexUsed": "Germany_prod_stock_Finance_0", - "searchResponse.serverUsed": "d85-de-1.algolia.net", - "searchResponse.hitsPerPage": 10, - "searchResponse.parsedQuery": "audi a5", - "searchResponse.timeoutHits": false, - "searchResponse.appliedRules.objectID": "1539345377254,1548767806494", - "searchResponse.facets_stats.Doors.avg": 3, - "searchResponse.facets_stats.Doors.max": 5, - "searchResponse.facets_stats.Doors.min": 2, - "searchResponse.facets_stats.Doors.sum": 48, - "searchResponse.facets_stats.Price.avg": 13210, - "searchResponse.facets_stats.Price.max": 15980, - "searchResponse.facets_stats.Price.min": 9950, - "searchResponse.facets_stats.Price.sum": 171730, - "searchResponse.facets_stats.VrmYear.avg": 2013, - "searchResponse.facets_stats.VrmYear.max": 2017, - "searchResponse.facets_stats.VrmYear.min": 2009, - "searchResponse.facets_stats.VrmYear.sum": 26171, - "searchResponse.timeoutCounts": false - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/identify", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "uniqueId": "user12345", - "properties": { - "searchResponse.hits.Vrm": "026067,4527,10007,031983,042012,002743,205536_3895,116265,010159,010178", - "searchResponse.hits.Make": "AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI", - "searchResponse.hits.Year": "2010,2009,2017,2012,2015,2010,2011,2016,2013,2016", - "searchResponse.hits.DName": "PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH,Stephan Walters - Autohaus Walters,ps kfz-vertrieb GmbH,Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\",Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\",Auto Mayer e.K.Inh. Skelcim Imeri,Autohaus Löbau GmbH,Elspass Autoland GmbH & Co. KG,Hermann Meyer GmbH & Co. KG,Hermann Meyer GmbH & Co. KG", - "searchResponse.hits.Model": "A5,A5,A5,A5,A5,A5,A5,A1,A1,A1", - "searchResponse.hits.Price": "13990,14450,14580,10980,15980,13980,12790,14690,9950,12950", - "searchResponse.hits.Mileage": "163000,99990,151500,197335,144205,121015,89236,42800,93996,69454", - "searchResponse.hits.DealerId": "1f338e5b-740f-6a38-bee1-ecff97acda69,68c7b5ae-8cf0-6595-9fd2-8644b9682838,a107e9a8-ac3c-6790-bb84-052dd5eed5e8,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,972258cb-132f-62a9-bd31-e02f9f70fa7b,9e697219-293e-63a0-884a-2d03f77bbbef,00c1bf3f-b19d-6198-a509-c7f2ff73c29a,35d4fe7e-81a0-6e99-a575-6f62bffb8900,35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "searchResponse.hits.Derivative": "A5 Cabrio 1.8 TFSI Cabrio,A5 Cabrio 40 TFSI S tronic S line Cabrio,A5 Sportback 2.0 TDI ultra S tronic Coupe,A5 2.0 TDI Sportback DPF multitronic Coupe,A5 Coupe 35 TDI S tronic S line Coupe,A5 Cabrio 2.0 TDI DPF Cabrio,A5 2.0 TDI Sportback DPF Coupe,A1 1.0 TFSI ultra Limousine,A1 1.4 TFSI Ambition Limousine,A1 1.4 TFSI Sportback S tronic Attraction Limousine", - "searchResponse.page": 0, - "searchResponse.merge.nbHitsMax": 1000, - "searchResponse.merge.nbHitslimit": 1000, - "searchResponse.merge.nbSearchers": 2, - "searchResponse.merge.nbHitsProcessed": 10, - "searchResponse.merge.personalization.impact": 100, - "searchResponse.merge.personalization.enabled": true, - "searchResponse.merge.personalization.profile.time": 0, - "searchResponse.merge.personalization.profile.taskID": 0, - "searchResponse.merge.personalization.percentile": 0, - "searchResponse.merge.personalization.nbPersoScanned": 0, - "searchResponse.merge.personalization.nbPersoSkipped": 0, - "searchResponse.merge.personalization.nbPersoReranked": 0, - "searchResponse.merge.personalization.nbPersoReturned": 0, - "searchResponse.merge.personalization.nbPersoSelected": 0, - "searchResponse.merge.personalization.nbRelevanceBuckets": 8, - "searchResponse.merge.lastHitToDisplay": 10, - "searchResponse.merge.nbHitsNumberingEnd": 10, - "searchResponse.nbHits": 13, - "searchResponse.nbPages": 2, - "searchResponse.queryID": "c5a176f8493236fcbfe69c3298d41659", - "searchResponse.indexUsed": "Germany_prod_stock_Finance_0", - "searchResponse.serverUsed": "d85-de-1.algolia.net", - "searchResponse.hitsPerPage": 10, - "searchResponse.parsedQuery": "audi a5", - "searchResponse.timeoutHits": false, - "searchResponse.appliedRules.objectID": "1539345377254,1548767806494", - "searchResponse.facets_stats.Doors.avg": 3, - "searchResponse.facets_stats.Doors.max": 5, - "searchResponse.facets_stats.Doors.min": 2, - "searchResponse.facets_stats.Doors.sum": 48, - "searchResponse.facets_stats.Price.avg": 13210, - "searchResponse.facets_stats.Price.max": 15980, - "searchResponse.facets_stats.Price.min": 9950, - "searchResponse.facets_stats.Price.sum": 171730, - "searchResponse.facets_stats.VrmYear.avg": 2013, - "searchResponse.facets_stats.VrmYear.max": 2017, - "searchResponse.facets_stats.VrmYear.min": 2009, - "searchResponse.facets_stats.VrmYear.sum": 26171, - "searchResponse.timeoutCounts": false, - "browser": "Chrome", - "browser_version": "80.0.3987.163", - "device": "Macintosh", - "os": "Mac OS" - } - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "user12345" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/alias", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "previousId": "ac7722c2-ccb6-4ae2-baf6-1effe861f4cd", - "newId": "user12345" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "user12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "12345", - "eventName": "Page View ApplicationLoaded", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "eventTime": 1571051718299, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "12345", - "eventName": "Page View ApplicationLoaded", - "properties": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "eventTime": 1571051718299, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "12345" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html", - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html", - "searchResponse.hits.Vrm": "026067,4527,10007,031983,042012,002743,205536_3895,116265,010159,010178", - "searchResponse.hits.Make": "AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI", - "searchResponse.hits.Year": "2010,2009,2017,2012,2015,2010,2011,2016,2013,2016", - "searchResponse.hits.DName": "PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH,Stephan Walters - Autohaus Walters,ps kfz-vertrieb GmbH,Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\",Hüseyin Zan Fahrzeughandel \"Autopark Grendelmatt\",Auto Mayer e.K.Inh. Skelcim Imeri,Autohaus Löbau GmbH,Elspass Autoland GmbH & Co. KG,Hermann Meyer GmbH & Co. KG,Hermann Meyer GmbH & Co. KG", - "searchResponse.hits.Model": "A5,A5,A5,A5,A5,A5,A5,A1,A1,A1", - "searchResponse.hits.Price": "13990,14450,14580,10980,15980,13980,12790,14690,9950,12950", - "searchResponse.hits.Mileage": "163000,99990,151500,197335,144205,121015,89236,42800,93996,69454", - "searchResponse.hits.DealerId": "1f338e5b-740f-6a38-bee1-ecff97acda69,68c7b5ae-8cf0-6595-9fd2-8644b9682838,a107e9a8-ac3c-6790-bb84-052dd5eed5e8,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,972258cb-132f-62a9-bd31-e02f9f70fa7b,9e697219-293e-63a0-884a-2d03f77bbbef,00c1bf3f-b19d-6198-a509-c7f2ff73c29a,35d4fe7e-81a0-6e99-a575-6f62bffb8900,35d4fe7e-81a0-6e99-a575-6f62bffb8900", - "searchResponse.hits.Derivative": "A5 Cabrio 1.8 TFSI Cabrio,A5 Cabrio 40 TFSI S tronic S line Cabrio,A5 Sportback 2.0 TDI ultra S tronic Coupe,A5 2.0 TDI Sportback DPF multitronic Coupe,A5 Coupe 35 TDI S tronic S line Coupe,A5 Cabrio 2.0 TDI DPF Cabrio,A5 2.0 TDI Sportback DPF Coupe,A1 1.0 TFSI ultra Limousine,A1 1.4 TFSI Ambition Limousine,A1 1.4 TFSI Sportback S tronic Attraction Limousine", - "searchResponse.page": 0, - "searchResponse.merge.nbHitsMax": 1000, - "searchResponse.merge.nbHitslimit": 1000, - "searchResponse.merge.nbSearchers": 2, - "searchResponse.merge.nbHitsProcessed": 10, - "searchResponse.merge.personalization.impact": 100, - "searchResponse.merge.personalization.enabled": true, - "searchResponse.merge.personalization.profile.time": 0, - "searchResponse.merge.personalization.profile.taskID": 0, - "searchResponse.merge.personalization.percentile": 0, - "searchResponse.merge.personalization.nbPersoScanned": 0, - "searchResponse.merge.personalization.nbPersoSkipped": 0, - "searchResponse.merge.personalization.nbPersoReranked": 0, - "searchResponse.merge.personalization.nbPersoReturned": 0, - "searchResponse.merge.personalization.nbPersoSelected": 0, - "searchResponse.merge.personalization.nbRelevanceBuckets": 8, - "searchResponse.merge.lastHitToDisplay": 10, - "searchResponse.merge.nbHitsNumberingEnd": 10, - "searchResponse.nbHits": 13, - "searchResponse.nbPages": 2, - "searchResponse.queryID": "c5a176f8493236fcbfe69c3298d41659", - "searchResponse.indexUsed": "Germany_prod_stock_Finance_0", - "searchResponse.serverUsed": "d85-de-1.algolia.net", - "searchResponse.hitsPerPage": 10, - "searchResponse.parsedQuery": "audi a5", - "searchResponse.timeoutHits": false, - "searchResponse.appliedRules.objectID": "1539345377254,1548767806494", - "searchResponse.facets_stats.Doors.avg": 3, - "searchResponse.facets_stats.Doors.max": 5, - "searchResponse.facets_stats.Doors.min": 2, - "searchResponse.facets_stats.Doors.sum": 48, - "searchResponse.facets_stats.Price.avg": 13210, - "searchResponse.facets_stats.Price.max": 15980, - "searchResponse.facets_stats.Price.min": 9950, - "searchResponse.facets_stats.Price.sum": 171730, - "searchResponse.facets_stats.VrmYear.avg": 2013, - "searchResponse.facets_stats.VrmYear.max": 2017, - "searchResponse.facets_stats.VrmYear.min": 2009, - "searchResponse.facets_stats.VrmYear.sum": 26171, - "searchResponse.timeoutCounts": false - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "path": "/tests/html/index4.html", - "referrer": "", - "search": "abc", - "title": "Test Page", - "url": "http://localhost/tests/html/index4.html", - "searchResponse.primitiveArr1": "abc,def", - "searchResponse.primitiveArr2": "1,2,3" - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "sample_user_id", - "eventName": "Product Clicked", - "properties": { - "revenue": "30", - "currency": "USD", - "quantity": "5", - "test_key_2.test_child_key_1": "test_child_value_1", - "price": "58.0", - "device": "Android 9", - "os": "Android" - }, - "eventTime": 1590431830917, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "sample_user_id" - } - ] -] diff --git a/test/__tests__/data/indicative_router_input.json b/test/__tests__/data/indicative_router_input.json deleted file mode 100644 index 7f0fee05eb..0000000000 --- a/test/__tests__/data/indicative_router_input.json +++ /dev/null @@ -1,138 +0,0 @@ -[ - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "metadata": { - "jobId": 1 - }, - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "AM": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "userId": "test_user_id", - "timestamp": "2019-09-01T15:46:51.693Z", - "type": "track" - } - }, - { - "destination": { - "Config": { - "apiKey": "abcde" - } - }, - "metadata": { - "jobId": 2 - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "anon_id", - "userId": "123456", - "type": "identify", - "traits": { - "anonymousId": "anon_id", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - } - } -] diff --git a/test/__tests__/data/indicative_router_output.json b/test/__tests__/data/indicative_router_output.json deleted file mode 100644 index c6031e90a2..0000000000 --- a/test/__tests__/data/indicative_router_output.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/event", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "eventUniqueId": "test_user_id", - "eventName": "spin_result", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "versionSessionCount": 2, - "win_amount": 0 - }, - "eventTime": 1567352811693, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "test_user_id" - } - ], - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "abcde" - } - } - }, - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/identify", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "uniqueId": "123456", - "properties": { - "email": "test@rudderstack.com", - "address.city": "kolkata", - "address.country": "India", - "address.postalCode": 712136, - "address.state": "WB", - "address.street": "", - "browser": "Chrome", - "browser_version": "77.0.3865.90", - "device": "Macintosh", - "os": "Mac OS" - }, - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456" - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.indicative.com/service/alias", - "headers": { - "Indicative-Client": "RudderStack", - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "previousId": "anon_id", - "newId": "123456", - "apiKey": "abcde" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "123456" - } - ], - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "abcde" - } - } - } -] diff --git a/test/__tests__/data/iterable.json b/test/__tests__/data/iterable.json deleted file mode 100644 index f8147c7402..0000000000 --- a/test/__tests__/data/iterable.json +++ /dev/null @@ -1,3191 +0,0 @@ -[ - { - "description": "Invalid page call", - "input": { - "message": { - "type": "page", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "statusCode": 400, - "message": "Invalid page call" - } - }, - { - "description": "Invalid screen call", - "input": { - "message": { - "type": "screen", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "statusCode": 400, - "message": "Invalid screen call" - } - }, - { - "description": "Update user event", - "input": { - "message": { - "type": "identify", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "manashi", - "email": "manashi@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "manashi", - "email": "manashi@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "email": "manashi@website.com", - "userId": "abcdeeeeeeeexxxx102", - "dataFields": { - "city": "Bangalore", - "name": "manashi", - "email": "manashi@website.com", - "country": "India" - }, - "preferUserId": true, - "mergeNestedObjects": true - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "api_key": "dummyApiKey", - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.iterable.com/api/users/update" - } - }, - { - "description": "Email opened event", - "input": { - "message": { - "type": "track", - "event": "Email Opened", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "userId": "abcdeeeeeeeexxxx102", - "createdAt": 1598631966468, - "eventName": "Email Opened", - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "api_key": "dummyApiKey", - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.iterable.com/api/events/track" - } - }, - { - "description": "Page call with trackCategorisedPages set to true and mapToSingleEvent is false", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category" - }, - "userId": "dummyApiKey", - "eventName": "ApplicationLoaded page", - "createdAt": 1571051718299 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Page call with trackAllPages set to true and mapToSingleEvent is true", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category", - "campaignId": "123456", - "templateId": "1213458" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": true, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category", - "campaignId": "123456", - "templateId": "1213458" - }, - "userId": "dummyApiKey", - "eventName": "Loaded a Page", - "createdAt": 1571051718299, - "campaignId": 123456, - "templateId": 1213458 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Page call with trackNamedPages set to true and mapToSingleEvent is false", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "name": "test-name" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": false, - "trackNamedPages": true - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "name": "test-name" - }, - "userId": "dummyApiKey", - "eventName": "ApplicationLoaded page", - "createdAt": 1571051718299 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Page call with trackAllPages set to true and mapToSingleEvent is false", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "" - }, - "userId": "dummyApiKey", - "eventName": "ApplicationLoaded page", - "createdAt": 1571051718299 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Screen call with trackCategorisedPages set to true and mapToSingleEvent is false", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "screen", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category" - }, - "userId": "dummyApiKey", - "eventName": "ApplicationLoaded screen", - "createdAt": 1571051718299 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Screen call with trackAllPages and mapToSingleEvent set to true", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "screen", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category", - "campaignId": "123456", - "templateId": "1213458" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": true, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "category": "test-category", - "campaignId": "123456", - "templateId": "1213458" - }, - "userId": "dummyApiKey", - "eventName": "Loaded a Screen", - "createdAt": 1571051718299, - "campaignId": 123456, - "templateId": 1213458 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Screen call with trackNamedPages set to true and mapToSingleEvent is false", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "screen", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "name": "test-name" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": false, - "trackNamedPages": true - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "", - "name": "test-name" - }, - "userId": "dummyApiKey", - "eventName": "ApplicationLoaded screen", - "createdAt": 1571051718299 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Screen call with trackAllPages set to true and mapToSingleEvent is false", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "screen", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "path": "/abc", - "referrer": "", - "search": "", - "title": "", - "url": "" - }, - "userId": "dummyApiKey", - "eventName": "ApplicationLoaded screen", - "createdAt": 1571051718299 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Group call", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "group", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "statusCode": 400, - "message": "Message type group not supported" - } - }, - { - "description": "Update user call with register device token", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false, - "registerDeviceOrBrowserApiKey": "5678910" - }, - "Enabled": true - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "123456", - "preferUserId": true, - "mergeNestedObjects": true - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/registerBrowserToken", - "headers": { - "Content-Type": "application/json", - "api_key": "5678910" - }, - "params": {}, - "body": { - "JSON": { - "browserToken": "some_device_token", - "email": "test@rudderstack.com", - "userId": "123456" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Update user call with register device token", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "token": "sample_push_token", - "name": "sample_device_name", - "model": "sample_device_model", - "manufacturer": "sample_device_manufacturer", - "type": "ios" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false, - "registerDeviceOrBrowserApiKey": "5678910" - }, - "Enabled": true - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "123456", - "preferUserId": true, - "mergeNestedObjects": true - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/registerDeviceToken", - "headers": { - "Content-Type": "application/json", - "api_key": "5678910" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "userId": "123456", - "device": { - "token": "sample_push_token", - "applicationName": "sample_device_name", - "platform": "APNS" - }, - "preferUserId": true - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Update user call with register device token", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "token": "sample_push_token", - "name": "sample_device_name", - "model": "sample_device_model", - "manufacturer": "sample_device_manufacturer", - "type": "android" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mergeNestedObjects": false, - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false, - "registerDeviceOrBrowserApiKey": "5678910" - }, - "Enabled": true - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "123456", - "preferUserId": true, - "mergeNestedObjects": false - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/registerDeviceToken", - "headers": { - "Content-Type": "application/json", - "api_key": "5678910" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "userId": "123456", - "device": { - "token": "sample_push_token", - "applicationName": "sample_device_name", - "platform": "GCM" - }, - "preferUserId": true - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Update cart event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "product added", - "type": "track", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "campaignId": "1", - "templateId": "0", - "orderId": 10000, - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "cars,auto", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg", - "quantity": "2" - }, - { - "product_id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "price": "192", - "quantity": 22, - "position": "12", - "category": "Cars2", - "url": "https://www.example.com/product/path2", - "image_url": "https://www.example.com/product/path.jpg2" - } - ] - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/updateCart", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "dummyApiKey", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "categories": ["cars", "auto"], - "price": 19, - "quantity": 2, - "imageUrl": "https://www.example.com/product/path.jpg", - "url": "https://www.example.com/product/path" - }, - { - "id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "categories": ["Cars2"], - "price": 192, - "quantity": 22, - "imageUrl": "https://www.example.com/product/path.jpg2", - "url": "https://www.example.com/product/path2" - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "TrackPurchase event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "order completed", - "type": "track", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "orderId": 10000, - "total": "1000", - "campaignId": "123456", - "templateId": "1213458", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "Cars", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg", - "quantity": 2 - }, - { - "product_id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "price": "192", - "quantity": "22", - "position": "12", - "category": "Cars2", - "url": "https://www.example.com/product/path2", - "image_url": "https://www.example.com/product/path.jpg2" - } - ] - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/trackPurchase", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "dataFields": { - "orderId": 10000, - "total": "1000", - "campaignId": "123456", - "templateId": "1213458", - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "Cars", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg", - "quantity": 2 - }, - { - "product_id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "price": "192", - "quantity": "22", - "position": "12", - "category": "Cars2", - "url": "https://www.example.com/product/path2", - "image_url": "https://www.example.com/product/path.jpg2" - } - ] - }, - "id": "10000", - "createdAt": 1571051718299, - "campaignId": 123456, - "templateId": 1213458, - "total": 1000, - "user": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "dummyApiKey", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "categories": ["Cars"], - "price": 19, - "quantity": 2, - "imageUrl": "https://www.example.com/product/path.jpg", - "url": "https://www.example.com/product/path" - }, - { - "id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "categories": ["Cars2"], - "price": 192, - "quantity": 22, - "imageUrl": "https://www.example.com/product/path.jpg2", - "url": "https://www.example.com/product/path2" - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Custom track event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "event": "test track event GA3", - "properties": { - "email": "test@rudderstack.com", - "campaignId": "1", - "templateId": "0", - "category": "test-category", - "user_actual_role": "system_admin, system_user", - "user_actual_id": 12345 - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/track", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "campaignId": "1", - "templateId": "0", - "category": "test-category", - "user_actual_role": "system_admin, system_user", - "user_actual_id": 12345, - "email": "test@rudderstack.com" - }, - "userId": "dummyApiKey", - "eventName": "test track event GA3", - "createdAt": 1571051718300, - "campaignId": 1, - "templateId": 0 - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Update user call with register browser token", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "traits": { - "email": "test@rudderstack.com" - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false, - "registerDeviceOrBrowserApiKey": "5678910" - }, - "Enabled": true - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "123456", - "preferUserId": true, - "mergeNestedObjects": true - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/registerBrowserToken", - "headers": { - "Content-Type": "application/json", - "api_key": "5678910" - }, - "params": {}, - "body": { - "JSON": { - "browserToken": "some_device_token", - "email": "test@rudderstack.com", - "userId": "123456" - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "userId and email is not provided in identify call", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "id": "72e528f869711c3d", - "manufacturer": "Google", - "model": "sdk_gphone_x86", - "name": "generic_x86_arm", - "token": "some_device_token", - "type": "android" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "statusCode": 400, - "message": "userId or email is mandatory for this request" - } - }, - { - "description": "Invalid page call", - "input": { - "message": { - "type": "page", - "sentAt": "2020-08-28T16:26:16.473Z", - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "statusCode": 400, - "message": "Invalid page call" - } - }, - { - "description": "UpdateCart event", - "input": { - "message": { - "type": "track", - "event": "Product Added", - "sentAt": "2021-07-09T05:27:17.908Z", - "userId": "8751", - "channel": "web", - "context": { - "os": { - "name": "", - "version": "" - }, - "app": { - "name": "RudderLabs JavaScript SDK", - "build": "1.0.0", - "version": "1.0.16", - "namespace": "com.rudderlabs.javascript" - }, - "page": { - "url": "https://joybird.com/cabinets/vira-console-cabinet/", - "path": "/cabinets/vira-console-cabinet/", - "title": "Vira Console Cabinet | Joybird", - "search": "", - "referrer": "$direct", - "referring_domain": "" - }, - "locale": "en-us", - "screen": { - "density": 2 - }, - "traits": { - "email": "jessica@jlpdesign.net" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.16" - }, - "campaign": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15" - }, - "rudderId": "1c42e104-97ec-4f54-a328-2379623583fe", - "messageId": "e58f6624-a1c3-48f4-a6af-610389602304", - "timestamp": "2021-07-09T05:27:18.131Z", - "properties": { - "sku": "JB24691400-W05", - "name": "Vira Console Cabinet", - "price": 797, - "cart_id": "bd9b8dbf4ef8ee01d4206b04fe2ee6ae", - "variant": "Oak", - "quantity": 1, - "quickship": true, - "full_price": 1328, - "product_id": 10606, - "non_interaction": 1 - }, - "receivedAt": "2021-07-09T05:27:18.131Z", - "request_ip": "162.224.233.114", - "anonymousId": "8a7ff986-62d8-45ca-9a16-8895b3f9d341", - "integrations": { - "All": true - }, - "originalTimestamp": "2021-07-09T05:27:17.908Z" - }, - "destination": { - "Config": { - "credentials": "abc", - "eventToTopicMap": [ - { - "from": "track", - "to": "projects/big-query-integration-poc/topics/test" - } - ] - } - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/updateCart", - "headers": { - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "email": "jessica@jlpdesign.net", - "dataFields": { - "email": "jessica@jlpdesign.net" - }, - "userId": "8751", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": 10606, - "sku": "JB24691400-W05", - "name": "Vira Console Cabinet", - "price": 797, - "quantity": 1 - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Update user call", - "input": { - "message": { - "channel": "sources", - "context": { - "externalId": [ - { - "id": "lynnanderson@smith.net", - "identifierType": "email", - "type": "ITERABLE-users" - } - ], - "mappedToDestination": "true", - "sources": { - "batch_id": "f5f240d0-0acb-46e0-b043-57fb0aabbadd", - "job_id": "1zAj94bEy8komdqnYtSoDp0VmGs/Syncher", - "job_run_id": "c5tar6cqgmgmcjvupdhg", - "task_id": "tt_10_rows_check", - "task_run_id": "c5tar6cqgmgmcjvupdi0", - "version": "release.v1.6.8" - } - }, - "messageId": "2f052f7c-f694-4849-a7ed-a432f7ffa0a4", - "originalTimestamp": "2021-10-28T14:03:50.503Z", - "receivedAt": "2021-10-28T14:03:46.567Z", - "recordId": "8", - "request_ip": "10.1.94.92", - "rudderId": "c0f6843e-e3d6-4946-9752-fa339fbadef2", - "sentAt": "2021-10-28T14:03:50.503Z", - "timestamp": "2021-10-28T14:03:46.566Z", - "traits": { - "administrative_unit": "Minnesota", - "am_pm": "AM", - "boolean": true, - "firstname": "Jacqueline", - "pPower": "AM", - "userId": "Jacqueline" - }, - "type": "identify", - "userId": "lynnanderson@smith.net" - }, - "destination": { - "ID": "1zia9wKshXt80YksLmUdJnr7IHI", - "Name": "test_iterable", - "DestinationDefinition": { - "ID": "1iVQvTRMsPPyJzwol0ifH93QTQ6", - "Name": "ITERABLE", - "DisplayName": "Iterable", - "Config": { - "destConfig": { - "defaultConfig": [ - "apiKey", - "mapToSingleEvent", - "trackAllPages", - "trackCategorisedPages", - "trackNamedPages" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": true, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": true - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "lynnanderson@smith.net", - "dataFields": { - "administrative_unit": "Minnesota", - "am_pm": "AM", - "boolean": true, - "firstname": "Jacqueline", - "pPower": "AM", - "userId": "Jacqueline", - "email": "lynnanderson@smith.net" - }, - "userId": "lynnanderson@smith.net", - "preferUserId": true, - "mergeNestedObjects": true - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Update user call", - "input": { - "message": { - "channel": "sources", - "context": { - "externalId": [ - { - "id": "Matthew", - "identifierType": "userId", - "type": "ITERABLE-users" - } - ], - "mappedToDestination": "true", - "sources": { - "batch_id": "230d7c79-a2c2-4b2a-90bb-06ba988d3bb4", - "job_id": "1zjj9aF5UkmavBi4HtM3kWOGvy0/Syncher", - "job_run_id": "c5tb4gsqgmgmcjvuplhg", - "task_id": "tt_10_rows", - "task_run_id": "c5tb4gsqgmgmcjvupli0", - "version": "release.v1.6.8" - } - }, - "messageId": "c4c97310-463b-4300-9215-5cfddcb2a769", - "originalTimestamp": "2021-10-28T14:23:43.254Z", - "receivedAt": "2021-10-28T14:23:38.300Z", - "recordId": "3", - "request_ip": "10.1.94.92", - "rudderId": "7300f5e3-bdb5-489e-ac7e-47876e487de9", - "sentAt": "2021-10-28T14:23:43.254Z", - "timestamp": "2021-10-28T14:23:38.299Z", - "traits": { - "price": "GB" - }, - "type": "identify", - "userId": "Matthew" - }, - "destination": { - "ID": "1zjjHN4RQ6t4DPj3HVpp0b6XW4A", - "Name": "test_userId_uniq", - "DestinationDefinition": { - "ID": "1iVQvTRMsPPyJzwol0ifH93QTQ6", - "Name": "ITERABLE", - "DisplayName": "Iterable", - "Config": { - "destConfig": { - "defaultConfig": [ - "apiKey", - "mapToSingleEvent", - "trackAllPages", - "trackCategorisedPages", - "trackNamedPages" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": [], - "supportedMessageTypes": ["identify", "page", "screen", "track"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter", - "cordova" - ], - "supportsVisualMapper": true, - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": true, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": true - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - }, - "libraries": [], - "request": { - "query": {} - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "dataFields": { - "price": "GB", - "userId": "Matthew" - }, - "userId": "Matthew", - "preferUserId": true, - "mergeNestedObjects": true - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Update user call with register device token", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "device": { - "token": "sample_push_token", - "name": "sample_device_name", - "model": "sample_device_model", - "manufacturer": "sample_device_manufacturer", - "type": "watchos" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "00000000000000000000000000", - "userId": "123456", - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false, - "registerDeviceOrBrowserApiKey": "5678910" - }, - "Enabled": true - } - }, - "output": [ - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/update", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "123456", - "preferUserId": true, - "mergeNestedObjects": true - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/registerDeviceToken", - "headers": { - "Content-Type": "application/json", - "api_key": "5678910" - }, - "params": {}, - "body": { - "JSON": { - "email": "test@rudderstack.com", - "userId": "123456", - "device": { - "token": "sample_push_token", - "applicationName": "sample_device_name", - "platform": "APNS" - }, - "preferUserId": true - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - ] - }, - { - "description": "Update email call", - "input": { - "message": { - "type": "alias", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "userId": "new@email.com", - "previousId": "old@email.com", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "currentEmail": "old@email.com", - "newEmail": "new@email.com" - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "api_key": "dummyApiKey", - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.iterable.com/api/users/updateEmail" - } - }, - { - "description": "Update email call with missing previousId", - "input": { - "message": { - "type": "alias", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "userId": "new@email.com", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "message": "Missing required value from \"previousId\"" - } - }, - { - "description": "Update email call without userId", - "input": { - "message": { - "type": "alias", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e", - "properties": { - "url": "https://dominos.com", - "title": "Pizza", - "referrer": "https://google.com" - }, - "previousId": "old@email.com", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": false, - "trackCategorisedPages": true, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "message": "Missing required value from \"userId\"" - } - }, - { - "description": "Update cart event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "john@gmail.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "product added", - "type": "track", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "campaignId": "1", - "templateId": "0", - "orderId": 10000, - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": ["bikes", "cars", "motors"], - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg", - "quantity": "2" - }, - { - "product_id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "price": "192", - "quantity": 22, - "position": "12", - "category": ["Bikes2", "cars2", "motors2"], - "url": "https://www.example.com/product/path2", - "image_url": "https://www.example.com/product/path.jpg2" - } - ] - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/updateCart", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "email": "john@gmail.com", - "dataFields": { - "email": "john@gmail.com" - }, - "userId": "dummyApiKey", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "categories": ["bikes", "cars", "motors"], - "price": 19, - "quantity": 2, - "imageUrl": "https://www.example.com/product/path.jpg", - "url": "https://www.example.com/product/path" - }, - { - "id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "categories": ["Bikes2", "cars2", "motors2"], - "price": 192, - "quantity": 22, - "imageUrl": "https://www.example.com/product/path.jpg2", - "url": "https://www.example.com/product/path2" - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Update cart event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "product added", - "type": "track", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "campaignId": "1", - "templateId": "0", - "orderId": 10000, - "total": 1000, - "products": [ - { - "product_id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "price": "19", - "position": "1", - "category": "shirts,pants,trousers", - "url": "https://www.example.com/product/path", - "image_url": "https://www.example.com/product/path.jpg", - "quantity": "2" - }, - { - "product_id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "price": "192", - "quantity": 22, - "position": "12", - "category": "Cars2", - "url": "https://www.example.com/product/path2", - "image_url": "https://www.example.com/product/path.jpg2" - } - ] - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/updateCart", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "dummyApiKey", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": "507f1f77bcf86cd799439011", - "sku": "45790-32", - "name": "Monopoly: 3rd Edition", - "categories": ["shirts", "pants", "trousers"], - "price": 19, - "quantity": 2, - "imageUrl": "https://www.example.com/product/path.jpg", - "url": "https://www.example.com/product/path" - }, - { - "id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "categories": ["Cars2"], - "price": 192, - "quantity": 22, - "imageUrl": "https://www.example.com/product/path.jpg2", - "url": "https://www.example.com/product/path2" - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Update cart event", - "input": { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "product added", - "type": "track", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "campaignId": "1", - "templateId": "0", - "orderId": 10000, - "total": 1000, - "product_id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "price": "192", - "quantity": 22, - "position": "12", - "category": "Cars2", - "url": "https://www.example.com/product/path2", - "image_url": "https://www.example.com/product/path.jpg2" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/updateCart", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "user": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "dummyApiKey", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": "507f1f77bcf86cd7994390112", - "sku": "45790-322", - "name": "Monopoly: 3rd Edition2", - "categories": ["Cars2"], - "price": 192, - "quantity": 22, - "imageUrl": "https://www.example.com/product/path.jpg2", - "url": "https://www.example.com/product/path2" - } - ] - }, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track purchase event", - "input": { - "destination": { - "Config": { - "passcode": "fbee74a147828e2932c701d19dc1f2dcfa4ac0048be3aa3a88d427090a59dc1c0fa002f1", - "accountId": "476550467", - "trackAnonymous": true, - "enableObjectIdMapping": false - } - }, - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "event": "order completed", - "type": "track", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "dummyApiKey", - "properties": { - "product_id": 1234, - "name": "Shoes", - "price": 45, - "quantity": 1, - "orderId": 10000, - "total": "1000", - "campaignId": "123456", - "templateId": "1213458" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/commerce/trackPurchase", - "headers": { - "Content-Type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "dataFields": { - "product_id": 1234, - "name": "Shoes", - "price": 45, - "quantity": 1, - "orderId": 10000, - "total": "1000", - "campaignId": "123456", - "templateId": "1213458" - }, - "id": "10000", - "createdAt": 1571051718299, - "campaignId": 123456, - "templateId": 1213458, - "total": 1000, - "user": { - "email": "test@rudderstack.com", - "dataFields": { - "email": "test@rudderstack.com" - }, - "userId": "dummyApiKey", - "preferUserId": true, - "mergeNestedObjects": true - }, - "items": [ - { - "id": 1234, - "name": "Shoes", - "price": 45, - "quantity": 1 - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track event without an event name", - "input": { - "message": { - "type": "track", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "id": "event1234", - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "userId": "abcdeeeeeeeexxxx102", - "createdAt": 1598631966468, - "dataFields": { - "id": "event1234", - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "api_key": "dummyApiKey", - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.iterable.com/api/events/track" - } - }, - { - "description": "Track event with empty event name", - "input": { - "message": { - "type": "track", - "event": "", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - "output": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {}, - "JSON": { - "userId": "abcdeeeeeeeexxxx102", - "createdAt": 1598631966468, - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - } - } - }, - "type": "REST", - "files": {}, - "method": "POST", - "params": {}, - "headers": { - "api_key": "dummyApiKey", - "Content-Type": "application/json" - }, - "version": "1", - "endpoint": "https://api.iterable.com/api/events/track" - } - } -] diff --git a/test/__tests__/data/iterable_router.json b/test/__tests__/data/iterable_router.json deleted file mode 100644 index eee80d1be8..0000000000 --- a/test/__tests__/data/iterable_router.json +++ /dev/null @@ -1,1141 +0,0 @@ -[ - { - "description": "Iterable router rETL tests", - "input": [ - { - "message": { - "receivedAt": "2022-09-27T11:12:59.080Z", - "sentAt": "2022-09-27T11:13:03.777Z", - "messageId": "9ad41366-8060-4c9f-b181-f6bea67d5469", - "originalTimestamp": "2022-09-27T11:13:03.777Z", - "traits": { - "rudderstack": "donaldbaker@ellis.com", - "new_field2": "GB" - }, - "channel": "sources", - "context": { - "sources": { - "version": "feat.SupportForTrack", - "job_run_id": "ccpdlajh6cfi19mr1vs0", - "task_run_id": "ccpdlajh6cfi19mr1vsg", - "batch_id": "4917ad78-280b-40d2-a30d-119434152a0f", - "job_id": "2FLKJDcTdjPHQpq7pUjB34dQ5w6/Syncher", - "task_id": "rows_100" - }, - "mappedToDestination": "true", - "externalId": [ - { - "id": "Tiffany", - "type": "ITERABLE-test-rudderstack", - "identifierType": "itemId" - } - ] - }, - "timestamp": "2022-09-27T11:12:59.079Z", - "type": "identify", - "userId": "Tiffany", - "recordId": "10", - "request_ip": "10.1.86.248" - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "hubID": "22066036" - }, - "Enabled": true - } - }, - { - "message": { - "receivedAt": "2022-09-27T11:12:59.080Z", - "sentAt": "2022-09-27T11:13:03.777Z", - "messageId": "9ad41366-8060-4c9f-b181-f6bea67d5469", - "originalTimestamp": "2022-09-27T11:13:03.777Z", - "traits": { - "rudderstack": "abc@ellis.com", - "new_field2": "GB1" - }, - "channel": "sources", - "context": { - "sources": { - "version": "feat.SupportForTrack", - "job_run_id": "ccpdlajh6cfi19mr1vs0", - "task_run_id": "ccpdlajh6cfi19mr1vsg", - "batch_id": "4917ad78-280b-40d2-a30d-119434152a0f", - "job_id": "2FLKJDcTdjPHQpq7pUjB34dQ5w6/Syncher", - "task_id": "rows_100" - }, - "mappedToDestination": "true", - "externalId": [ - { - "id": "ABC", - "type": "ITERABLE-test-rudderstack", - "identifierType": "itemId" - } - ] - }, - "timestamp": "2022-09-27T11:12:59.079Z", - "type": "identify", - "userId": "Tiffany", - "recordId": "10", - "request_ip": "10.1.86.248" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "hubID": "22066036" - }, - "Enabled": true - } - } - ], - "output": [ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/catalogs/test-rudderstack/items", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "documents": { - "Tiffany": { - "rudderstack": "donaldbaker@ellis.com", - "new_field2": "GB" - }, - "ABC": { - "rudderstack": "abc@ellis.com", - "new_field2": "GB1" - } - }, - "replaceUploadedFieldsOnly": true - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 1 - }, - { - "jobId": 2 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "hubID": "22066036" - }, - "Enabled": true - } - } - ] - }, - { - "description": "Iterable router batch tests", - "input": [ - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "manashi", - "email": "manashi@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "manashi", - "email": "manashi@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 1, - "userId": "1" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "track", - "event": "Email Opened", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "metadata": { - "jobId": 2, - "userId": "1" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 3, - "userId": "2" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "track", - "event": "Link Clicked", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "metadata": { - "jobId": 4, - "userId": "2" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "track", - "event": "Email Deleted", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "metadata": { - "jobId": 5, - "userId": "2" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "track", - "event": "Email Opened", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "metadata": { - "jobId": 6, - "userId": "3" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+1@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+1@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 7, - "userId": "3" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "track", - "event": "Email Sent", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "metadata": { - "jobId": 8, - "userId": "4" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+2@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+2@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 9, - "userId": "4" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+3@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+3@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 10, - "userId": "5" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "track", - "event": "Email Received", - "sentAt": "2020-08-28T16:26:16.473Z", - "context": { - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453", - "properties": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.468Z" - }, - "metadata": { - "jobId": 11, - "userId": "5" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+7@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+7@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 12, - "userId": "5" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+4@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+4@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 13, - "userId": "6" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+5@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+5@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 14, - "userId": "6" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "message": { - "type": "identify", - "event": "Details", - "sentAt": "2020-08-28T16:26:06.466Z", - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+6@website.com", - "country": "India" - }, - "context": { - "traits": { - "city": "Bangalore", - "name": "rudder", - "email": "test+6@website.com", - "country": "India" - }, - "library": { - "name": "analytics-node", - "version": "0.0.3" - } - }, - "_metadata": { - "nodeVersion": "10.22.0" - }, - "messageId": "node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd", - "anonymousId": "abcdeeeeeeeexxxx102", - "originalTimestamp": "2020-08-28T16:26:06.462Z" - }, - "metadata": { - "jobId": 15, - "userId": "6" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - } - ], - "output": [ - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/bulkUpdate", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "users": [ - { - "email": "manashi@website.com", - "dataFields": { - "city": "Bangalore", - "name": "manashi", - "email": "manashi@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test+3@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+3@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test+4@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+4@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test+5@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+5@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test+6@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+6@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 1, - "userId": "1" - }, - { - "jobId": 3, - "userId": "2" - }, - { - "jobId": 10, - "userId": "5" - }, - { - "jobId": 13, - "userId": "6" - }, - { - "jobId": 14, - "userId": "6" - }, - { - "jobId": 15, - "userId": "6" - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/events/trackBulk", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "events": [ - { - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "userId": "abcdeeeeeeeexxxx102", - "eventName": "Email Opened", - "createdAt": 1598631966468 - }, - { - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "userId": "abcdeeeeeeeexxxx102", - "eventName": "Link Clicked", - "createdAt": 1598631966468 - }, - { - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "userId": "abcdeeeeeeeexxxx102", - "eventName": "Email Deleted", - "createdAt": 1598631966468 - }, - { - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "userId": "abcdeeeeeeeexxxx102", - "eventName": "Email Opened", - "createdAt": 1598631966468 - }, - { - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "userId": "abcdeeeeeeeexxxx102", - "eventName": "Email Sent", - "createdAt": 1598631966468 - }, - { - "dataFields": { - "subject": "resume validate", - "sendtime": "2020-01-01", - "sendlocation": "akashdeep@gmail.com" - }, - "userId": "abcdeeeeeeeexxxx102", - "eventName": "Email Received", - "createdAt": 1598631966468 - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 2, - "userId": "1" - }, - { - "jobId": 4, - "userId": "2" - }, - { - "jobId": 5, - "userId": "2" - }, - { - "jobId": 6, - "userId": "3" - }, - { - "jobId": 8, - "userId": "4" - }, - { - "jobId": 11, - "userId": "5" - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - }, - { - "batchedRequest": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.iterable.com/api/users/bulkUpdate", - "headers": { - "Content-Type": "application/json", - "api_key": "dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "users": [ - { - "email": "test+1@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+1@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test+2@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+2@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - }, - { - "email": "test+7@website.com", - "dataFields": { - "city": "Bangalore", - "name": "rudder", - "email": "test+7@website.com", - "country": "India" - }, - "userId": "abcdeeeeeeeexxxx102", - "preferUserId": true, - "mergeNestedObjects": true - } - ] - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - }, - "metadata": [ - { - "jobId": 7, - "userId": "3" - }, - { - "jobId": 9, - "userId": "4" - }, - { - "jobId": 12, - "userId": "5" - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "mapToSingleEvent": false, - "trackAllPages": true, - "trackCategorisedPages": false, - "trackNamedPages": false - }, - "Enabled": true - } - } - ] - }, - { - "description": "Iterable no event test", - "input": [], - "output": [ - { - "batched": false, - "error": "Invalid event array", - "metadata": null, - "statusCode": 400 - } - ] - } -] diff --git a/test/__tests__/data/june.json b/test/__tests__/data/june.json deleted file mode 100644 index 8b995fbff5..0000000000 --- a/test/__tests__/data/june.json +++ /dev/null @@ -1,572 +0,0 @@ -[ - { - "description": "No Message type", - "input": { - "message": { - "userId": "test@123", - "context": { - "traits": { - "email": "test@rudderstack.com", - "username": "Samle_putUserName", - "firstName": "uday" - } - }, - "integrations": { - "All": true, - "user.com": { - "lookup": "email" - } - } - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "apiSecret": "dummyApiSecret" - } - } - }, - "output": { - "error": "Event type is required" - } - }, - { - "description": "Unsupported Type", - "input": { - "message": { - "userId": "test@123", - "type": "trackUser", - "context": { - "traits": { - "email": "test@rudderstack.com", - "firstName": "test", - "lastName": "rudderstack", - "age": 15, - "gender": "male", - "status": "user", - "city": "Kalkata", - "country": "india", - "tags": ["productuser"], - "phone": "9225467887" - } - } - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "apiSecret": "dummyApiSecret" - } - } - }, - "output": { - "error": "Event type \"trackuser\" is not supported" - } - }, - { - "description": "Identify call without userId", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "identify", - "context": { - "traits": { - "name": "John Doe", - "email": "johndoe@gmail.com", - "age": 25 - } - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "error": "Missing required value from \"userIdOnly\"" - } - }, - { - "description": "Identify call with userId, traits", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "identify", - "sentAt": "2022-01-20T13:39:21.033Z", - "channel": "web", - "userId": "5136633649", - "context": { - "traits": { - "name": "John Doe", - "email": "johndoe@gmail.com", - "age": 25 - } - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/identify", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "traits": { - "name": "John Doe", - "email": "johndoe@gmail.com", - "age": 25 - }, - "timestamp": "2022-01-20T13:39:21.032Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track call without userId", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "track", - "event": "Product Reviewed", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3.0, - "review_body": "Average product, expected much more.", - "groupId": "91Yb32830" - }, - "context": {}, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "error": "Missing required value from \"userIdOnly\"" - } - }, - { - "description": "Track call without groupId", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "track", - "event": "Product Reviewed", - "userId": "5136633649", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3.0, - "review_body": "Average product, expected much more." - }, - "context": {}, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/track", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "event": "Product Reviewed", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3, - "review_body": "Average product, expected much more." - }, - "timestamp": "2022-01-20T13:39:21.032Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track call without properties", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "track", - "event": "Product Reviewed", - "userId": "5136633649", - "context": {}, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/track", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "event": "Product Reviewed", - "timestamp": "2022-01-20T13:39:21.032Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track call with userId, groupId and properties", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "track", - "event": "Product Reviewed", - "userId": "5136633649", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3.0, - "review_body": "Average product, expected much more.", - "groupId": "91Yb32830" - }, - "context": {}, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/track", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "event": "Product Reviewed", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3, - "review_body": "Average product, expected much more." - }, - "timestamp": "2022-01-20T13:39:21.032Z", - "context": { - "groupId": "91Yb32830" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Track call with userId, groupId (from externalId) and properties", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "track", - "event": "Product Reviewed", - "userId": "5136633649", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3.0, - "review_body": "Average product, expected much more.", - "groupId": "test-12345" - }, - "context": { - "externalId": [ - { - "type": "juneGroupId", - "id": "91Yb32830" - } - ] - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/track", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "event": "Product Reviewed", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3, - "review_body": "Average product, expected much more." - }, - "timestamp": "2022-01-20T13:39:21.032Z", - "context": { - "groupId": "91Yb32830" - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Group call with userId, groupId and traits", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "group", - "userId": "5136633649", - "traits": { - "name": "Initech", - "employees": 500, - "headquarters": "Redwood City, California, United States", - "ceo": "John Doe", - "revenue": 70000000, - "currency": "USD", - "groupId": "9230AUbd2138h" - }, - "context": {}, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/group", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "groupId": "9230AUbd2138h", - "traits": { - "name": "Initech", - "employees": 500, - "headquarters": "Redwood City, California, United States", - "ceo": "John Doe", - "revenue": 70000000, - "currency": "USD" - }, - "timestamp": "2022-01-20T13:39:21.032Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - }, - { - "description": "Page call with properties", - "input": { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "message": { - "type": "page", - "userId": "5136633649", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "rudderTest@gmail.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "page": { - "path": "/destinations/amplitude", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/amplitude", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "properties": { - "path": "/destinations/amplitude", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/amplitude", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2023-08-06T13:39:21.032Z" - } - }, - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.june.so/api/page", - "headers": { - "Content-Type": "application/json", - "Authorization": "Basic dummyApiKey" - }, - "params": {}, - "body": { - "JSON": { - "userId": "5136633649", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "properties": { - "path": "/destinations/amplitude", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/amplitude", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - }, - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "timestamp": "2023-08-06T13:39:21.032Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {} - } - } -] diff --git a/test/__tests__/data/june_router.json b/test/__tests__/data/june_router.json deleted file mode 100644 index cef4674e54..0000000000 --- a/test/__tests__/data/june_router.json +++ /dev/null @@ -1,123 +0,0 @@ -[ - { - "input": [ - { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "metadata": { - "jobId": 1 - }, - "message": { - "type": "identify", - "sentAt": "2022-01-20T13:39:21.033Z", - "channel": "web", - "userId": "5136633649", - "context": { - "traits": { - "name": "John Doe", - "email": "johndoe@gmail.com", - "age": 25 - } - }, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "metadata": { - "jobId": 2 - }, - "message": { - "type": "track", - "event": "Product Reviewed", - "properties": { - "review_id": "12345", - "product_id": "123", - "rating": 3.0, - "review_body": "Average product, expected much more.", - "groupId": "91Yb32830" - }, - "context": {}, - "rudderId": "553b5522-c575-40a7-8072-9741c5f9a647", - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "originalTimestamp": "2022-01-20T13:39:21.032Z" - } - } - ], - "output": [ - { - "batched": false, - "batchedRequest": { - "body": { - "FORM": {}, - "JSON": { - "anonymousId": "bf412108-0357-4330-b119-7305e767823c", - "timestamp": "2022-01-20T13:39:21.032Z", - "traits": { - "age": 25, - "email": "johndoe@gmail.com", - "name": "John Doe" - }, - "userId": "5136633649" - }, - "JSON_ARRAY": {}, - "XML": {} - }, - "endpoint": "https://api.june.so/api/identify", - "files": {}, - "headers": { - "Authorization": "Basic dummyApiKey", - "Content-Type": "application/json" - }, - "method": "POST", - "params": {}, - "type": "REST", - "version": "1" - }, - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "metadata": [ - { - "jobId": 1 - } - ], - "statusCode": 200 - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey" - }, - "ID": "june123" - }, - "batched": false, - "error": "Missing required value from \"userIdOnly\"", - "metadata": [ - { - "jobId": 2 - } - ], - "statTags": { - "errorCategory": "dataValidation", - "errorType": "instrumentation" - }, - "statusCode": 400 - } - ] - } -] diff --git a/test/__tests__/data/kafka.json b/test/__tests__/data/kafka.json deleted file mode 100644 index 720ae1fec2..0000000000 --- a/test/__tests__/data/kafka.json +++ /dev/null @@ -1,571 +0,0 @@ -[ - { - "description": "Test case with null destination config", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": null, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": true - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": true - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - }, - "userId": "userId" - } - }, - { - "description": "Test case without userId", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": null, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": true - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": true - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track" - }, - "userId": "anonymousId" - } - }, - { - "description": "Test case with null dest config and avro schema", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": null, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": { - "schemaId": "schema001" - } - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": { - "schemaId": "schema001" - } - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - }, - "userId": "userId", - "schemaId": "schema001" - } - }, - { - "description": "Test case with null dest config and integrations topic", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": null, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": { - "topic": "specific-topic" - } - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "integrations": { - "Kafka": { - "topic": "specific-topic" - } - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - }, - "userId": "userId", - "topic": "specific-topic" - } - }, - { - "description": "Test case with dest config with default topic", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": { - "topic": "default-topic" - }, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "event", - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - }, - "userId": "userId", - "topic": "default-topic" - } - }, - { - "description": "Test case with dest config with event type topic", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": { - "topic": "default-topic", - "enableMultiTopic": true, - "eventTypeToTopicMap": [ - { - "from": "identify", - "to": "identify-topic" - }, - { - "from": "page", - "to": "page-topic" - }, - { - "from": "screen", - "to": "screen-topic" - }, - { - "from": "group", - "to": "group-topic" - }, - { - "from": "alias", - "to": "alias-topic" - } - ], - "eventToTopicMap": [ - { - "from": "Product Added", - "to": "product-added" - } - ] - }, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "identify", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "identify", - "userId": "userId" - }, - "userId": "userId", - "topic": "identify-topic" - } - }, - { - "description": "Test case with dest config with event name topic", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": { - "topic": "default-topic", - "enableMultiTopic": true, - "eventTypeToTopicMap": [ - { - "from": "identify", - "to": "identify-topic" - }, - { - "from": "page", - "to": "page-topic" - }, - { - "from": "screen", - "to": "screen-topic" - }, - { - "from": "group", - "to": "group-topic" - }, - { - "from": "alias", - "to": "alias-topic" - } - ], - "eventToTopicMap": [ - { - "from": "Product Added", - "to": "product-added" - } - ] - }, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "Product Added", - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "Product Added", - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - }, - "userId": "userId", - "topic": "product-added" - } - }, - { - "description": "Test case with dest config with event name topic no match", - "input": { - "destination": { - "ID": "kafkadestinationid", - "Name": "Kafka", - "Config": { - "topic": "default-topic", - "enableMultiTopic": true, - "eventTypeToTopicMap": [ - { - "from": "identify", - "to": "identify-topic" - }, - { - "from": "page", - "to": "page-topic" - }, - { - "from": "screen", - "to": "screen-topic" - }, - { - "from": "group", - "to": "group-topic" - }, - { - "from": "alias", - "to": "alias-topic" - } - ], - "eventToTopicMap": [ - { - "from": "Product Added", - "to": "product-added" - } - ] - }, - "Enabled": true, - "IsProcessorEnabled": true - }, - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "Product Added No match", - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - } - }, - "output": { - "message": { - "anonymousId": "anonymousId", - "context": { - "library": { - "name": "analytics-go", - "version": "3.0.0" - } - }, - "event": "Product Added No match", - "messageId": "messageId", - "originalTimestamp": "2019-07-18T15:00:00Z", - "properties": { - "key": "value" - }, - "receivedAt": "2019-07-18T15:00:00Z", - "sentAt": "2019-07-18T15:00:00Z", - "timestamp": "2019-07-18T15:00:00Z", - "type": "track", - "userId": "userId" - }, - "userId": "userId", - "topic": "default-topic" - } - } -] diff --git a/test/__tests__/data/kafka_batch_input.json b/test/__tests__/data/kafka_batch_input.json index fa4144406a..e69de29bb2 100644 --- a/test/__tests__/data/kafka_batch_input.json +++ b/test/__tests__/data/kafka_batch_input.json @@ -1,987 +0,0 @@ -[ - [ - { - "message": { - "userId": "user1", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user1", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "6f27a4da-cefb-4800-acf1-f467e8aab91c", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - "metadata": { - "rudderId": "user1<<>>new-topic", - "jobId": 1 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user2", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user2", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "fe182d9e-e86e-4db5-ae12-f4b399555fcc", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - "metadata": { - "rudderId": "user2<<>>new-topic", - "jobId": 2 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user3", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user3", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "2803e656-77ff-47ca-9606-90663f9aed38", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - "metadata": { - "rudderId": "user3<<>>new-topic", - "jobId": 3 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user4", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user4", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - "metadata": { - "rudderId": "user4<<>>new-topic", - "jobId": 4 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user5", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user5", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "schemaId": "schema001" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "schemaId": "schema001", - "topic": "new-topic" - }, - "metadata": { - "rudderId": "user5<<>>new-topic", - "jobId": 5 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user6", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user6", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-1" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-1" - }, - "metadata": { - "rudderId": "user6<<>>topic-1", - "jobId": 6 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user7", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user7", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-1" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-1" - }, - "metadata": { - "rudderId": "user7<<>>topic-1", - "jobId": 7 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user8", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user8", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-2" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-2" - }, - "metadata": { - "rudderId": "user8<<>>topic-2", - "jobId": 8 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user8", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user8", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-2" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-2" - }, - "metadata": { - "rudderId": "user8<<>>topic-2", - "jobId": 9 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "message": { - "userId": "user8", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user8", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-3" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-3" - }, - "metadata": { - "rudderId": "user8<<>>topic-3", - "jobId": 10 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } - ], - { - "message": { - "userId": "user1", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user1", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "6f27a4da-cefb-4800-acf1-f467e8aab91c", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - "metadata": { - "rudderId": "user1<<>>new-topic", - "jobId": 1 - }, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } -] diff --git a/test/__tests__/data/kafka_batch_output.json b/test/__tests__/data/kafka_batch_output.json index a0e2d935e4..e69de29bb2 100644 --- a/test/__tests__/data/kafka_batch_output.json +++ b/test/__tests__/data/kafka_batch_output.json @@ -1,582 +0,0 @@ -[ - [ - { - "batchedRequest": [ - { - "userId": "user1", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user1", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "6f27a4da-cefb-4800-acf1-f467e8aab91c", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - { - "userId": "user2", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user2", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "fe182d9e-e86e-4db5-ae12-f4b399555fcc", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - { - "userId": "user3", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user3", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "2803e656-77ff-47ca-9606-90663f9aed38", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - { - "userId": "user4", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user4", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "new-topic" - }, - { - "userId": "user5", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user5", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "schemaId": "schema001" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "schemaId": "schema001", - "topic": "new-topic" - } - ], - "metadata": [ - { "rudderId": "user1<<>>new-topic", "jobId": 1 }, - { - "rudderId": "user2<<>>new-topic", - "jobId": 2 - }, - { - "rudderId": "user3<<>>new-topic", - "jobId": 3 - }, - { - "rudderId": "user4<<>>new-topic", - "jobId": 4 - }, - { - "rudderId": "user5<<>>new-topic", - "jobId": 5 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "batchedRequest": [ - { - "userId": "user6", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user6", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-1" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-1" - }, - { - "userId": "user7", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user7", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-1" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-1" - } - ], - "metadata": [ - { - "rudderId": "user6<<>>topic-1", - "jobId": 6 - }, - { - "rudderId": "user7<<>>topic-1", - "jobId": 7 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "batchedRequest": [ - { - "userId": "user8", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user8", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-2" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-2" - }, - { - "userId": "user8", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user8", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-2" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-2" - } - ], - "metadata": [ - { - "rudderId": "user8<<>>topic-2", - "jobId": 8 - }, - { - "rudderId": "user8<<>>topic-2", - "jobId": 9 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - { - "batchedRequest": [ - { - "userId": "user8", - "message": { - "type": "identify", - "sentAt": "2021-07-08T02:45:11.329+05:30", - "userId": "user8", - "context": { - "ip": "14.5.67.21", - "traits": { - "trait1": "new-val" - }, - "library": { - "name": "http" - } - }, - "integrations": { - "All": true, - "KAFKA": { - "topic": "topic-3" - } - }, - "messageId": "87c98fc2-561b-4631-8cd6-1d02cdd1429f", - "timestamp": "2020-02-02T00:23:09.544Z", - "receivedAt": "2021-07-08T02:45:06.851+05:30", - "request_ip": "[::1]", - "anonymousId": "anon-id-new", - "originalTimestamp": "2021-07-08T02:45:11.329+05:30" - }, - "topic": "topic-3" - } - ], - "metadata": [ - { - "rudderId": "user8<<>>topic-3", - "jobId": 10 - } - ], - "batched": true, - "statusCode": 200, - "destination": { - "ID": "1uzGR4rn915R6Xts9KRfWAzmgGL", - "Name": "local-kafka-test", - "DestinationDefinition": { - "ID": "1c81NzcId5roSqvQ1R57zhIsC01", - "Name": "KAFKA", - "DisplayName": "Apache Kafka", - "Config": { - "destConfig": { - "defaultConfig": [ - "hostName", - "port", - "topic", - "sslEnabled", - "caCertificate", - "useSASL", - "saslType", - "username", - "password" - ] - }, - "excludeKeys": [], - "includeKeys": [], - "saveDestinationResponse": true, - "secretKeys": ["password"], - "supportedSourceTypes": [ - "android", - "ios", - "web", - "unity", - "amp", - "cloud", - "warehouse", - "reactnative", - "flutter" - ], - "transformAt": "processor", - "transformAtV1": "processor" - }, - "ResponseRules": null - }, - "Config": { - "caCertificate": "caCertificate", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "new-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - } - ], - [ - { - "batched": false, - "error": "Invalid event array", - "metadata": null, - "statusCode": 400 - } - ] -] diff --git a/test/__tests__/data/kafka_with_metadata.json b/test/__tests__/data/kafka_with_metadata.json deleted file mode 100644 index 04564102b8..0000000000 --- a/test/__tests__/data/kafka_with_metadata.json +++ /dev/null @@ -1,75 +0,0 @@ -[ - { - "input": { - "outputEvent": { - "message": { - "anonymousId": "b255896a-94cd-4bf9-98d5-40389e4b70b8", - "channel": "web", - "event": "Purchase", - "integrations": { - "All": true, - "KAFKA": { - "topic": "specific-topic" - } - }, - "messageId": "522224fe-9c65-4036-8f1f-980e39c6b342", - "originalTimestamp": "2020-05-14T06:54:08.745Z", - "properties": { - "currency": "USD", - "revenue": 100 - }, - "receivedAt": "2020-05-14T12:24:08.781+05:30", - "request_ip": "[::1]:53194", - "sentAt": "2020-05-14T06:54:08.746Z", - "timestamp": "2020-05-14T12:24:08.780+05:30", - "type": "track", - "userId": "user-12345" - }, - "userId": "user-12345", - "topic": "specific-topic" - }, - "inputEvent": { - "message": { - "val": "add boilerplate values if needed" - }, - "destination": { - "ID": "1bqCbmPnO0T7dTE159ho8wiyPlD", - "Name": "Kafka", - "DestinationDefinition": {}, - "Config": { - "caCertificate": "", - "hostName": "localhost", - "password": "password", - "port": "29092", - "saslType": "sha256", - "sslEnabled": true, - "topic": "default-topic", - "useSASL": true, - "username": "username" - }, - "Enabled": true, - "Transformations": [], - "IsProcessorEnabled": true - } - }, - "metadata": { - "anonymousId": "b255896a-94cd-4bf9-98d5-40389e4b70b8", - "destinationId": "1bqCbmPnO0T7dTE159ho8wiyPlD", - "destinationType": "KAFKA", - "jobId": 15, - "messageId": "522224fe-9c65-4036-8f1f-980e39c6b342", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC", - "rudderId": "b255896a-94cd-4bf9-98d5-40389e4b70b8<<>>user-12345" - } - }, - "output": { - "anonymousId": "b255896a-94cd-4bf9-98d5-40389e4b70b8", - "destinationId": "1bqCbmPnO0T7dTE159ho8wiyPlD", - "destinationType": "KAFKA", - "jobId": 15, - "messageId": "522224fe-9c65-4036-8f1f-980e39c6b342", - "sourceId": "1bqCEGibwCvR7F0acuLzbEMQYIC", - "rudderId": "b255896a-94cd-4bf9-98d5-40389e4b70b8<<>>user-12345<<>>specific-topic" - } - } -] diff --git a/test/__tests__/data/keen_input.json b/test/__tests__/data/keen_input.json deleted file mode 100644 index 08467936b7..0000000000 --- a/test/__tests__/data/keen_input.json +++ /dev/null @@ -1,235 +0,0 @@ -[ - { - "message": { - "channel": "web", - "type": "page", - "context": null, - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "traits": { - "email": "test@gmail.com", - "anonymousId": "anon-id" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - }, - "ip": "0.0.0.0", - "age": 26 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "identify", - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "integrations": { - "All": true - }, - "traits": { - "anonymousId": "my-anon-id", - "email": "test@gmail.com", - "address": { - "city": "kolkata-1", - "country": "US", - "postalCode": 712136, - "state": "CA", - "street": "" - } - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "traits": { - "email": "test@gmail.com", - "anonymousId": "anon-id" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "test track event", - "request_ip": "1.1.1.1", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "traits": { - "email": "test@gmail.com", - "anonymousId": "anon-id" - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - } -] diff --git a/test/__tests__/data/keen_output.json b/test/__tests__/data/keen_output.json deleted file mode 100644 index 4b48b273f0..0000000000 --- a/test/__tests__/data/keen_output.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com", - "userId": "12345", - "keen": { - "addons": [] - }, - "anonymousId": "00000000000000000000000000", - "user": { - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com" - }, - "userId": "12345" - } - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.keen.io/3.0/projects/abcde/events/Viewed ApplicationLoaded page", - "userId": "12345", - "headers": { - "Content-Type": "application/json", - "Authorization": "xyz" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "message": "Event type identify is not supported", - "statusCode": 400 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "search": "abc", - "request_ip": "0.0.0.0", - "title": "Test Page", - "url": "www.rudderlabs.com", - "referrer": "Rudder", - "userId": "12345", - "keen": { - "addons": [ - { - "input": { - "ip": "request_ip" - }, - "name": "keen:ip_to_geo", - "output": "ip_geo_info" - }, - { - "input": { - "ua_string": "user_agent" - }, - "name": "keen:ua_parser", - "output": "parsed_user_agent" - } - ] - }, - "anonymousId": "00000000000000000000000000", - "user": { - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com" - }, - "userId": "12345" - }, - "path": "/test", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.keen.io/3.0/projects/abcde/events/Viewed ApplicationLoaded page", - "userId": "12345", - "headers": { - "Content-Type": "application/json", - "Authorization": "xyz" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "request_ip": "1.1.1.1", - "user_time_spent": 50000, - "userId": "12345", - "keen": { - "addons": [ - { - "input": { - "ip": "request_ip" - }, - "name": "keen:ip_to_geo", - "output": "ip_geo_info" - }, - { - "input": { - "ua_string": "user_agent" - }, - "name": "keen:ua_parser", - "output": "parsed_user_agent" - } - ] - }, - "anonymousId": "00000000000000000000000000", - "user": { - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com" - }, - "userId": "12345" - }, - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.keen.io/3.0/projects/abcde/events/test track event", - "userId": "12345", - "headers": { - "Content-Type": "application/json", - "Authorization": "xyz" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - } -] diff --git a/test/__tests__/data/keen_router_input.json b/test/__tests__/data/keen_router_input.json deleted file mode 100644 index 5c85bbc017..0000000000 --- a/test/__tests__/data/keen_router_input.json +++ /dev/null @@ -1,132 +0,0 @@ -[ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "track", - "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.300Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "event": "test track event", - "request_ip": "1.1.1.1", - "properties": { - "user_actual_role": "system_admin", - "user_actual_id": 12345, - "user_time_spent": 50000 - }, - "integrations": { - "All": true - }, - "traits": { - "email": "test@gmail.com", - "anonymousId": "anon-id" - }, - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "jobId": 1 - }, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - }, - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "traits": { - "email": "test@rudderstack.com", - "anonymousId": "12345" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "type": "page", - "messageId": "5e10d13a-bf9a-44bf-b884-43a9e591ea71", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T11:15:18.299Z", - "anonymousId": "00000000000000000000000000", - "userId": "12345", - "properties": { - "path": "/test", - "referrer": "Rudder", - "search": "abc", - "title": "Test Page", - "url": "www.rudderlabs.com" - }, - "traits": { - "email": "test@gmail.com", - "anonymousId": "anon-id" - }, - "integrations": { - "All": true - }, - "name": "ApplicationLoaded", - "sentAt": "2019-10-14T11:15:53.296Z" - }, - "metadata": { - "jobId": 2 - }, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - } -] diff --git a/test/__tests__/data/keen_router_output.json b/test/__tests__/data/keen_router_output.json deleted file mode 100644 index d54809354b..0000000000 --- a/test/__tests__/data/keen_router_output.json +++ /dev/null @@ -1,148 +0,0 @@ -[ - { - "batchedRequest": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "user_actual_id": 12345, - "user_actual_role": "system_admin", - "request_ip": "1.1.1.1", - "user_time_spent": 50000, - "userId": "12345", - "keen": { - "addons": [ - { - "input": { - "ip": "request_ip" - }, - "name": "keen:ip_to_geo", - "output": "ip_geo_info" - }, - { - "input": { - "ua_string": "user_agent" - }, - "name": "keen:ua_parser", - "output": "parsed_user_agent" - } - ] - }, - "anonymousId": "00000000000000000000000000", - "user": { - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com" - }, - "userId": "12345" - }, - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.keen.io/3.0/projects/abcde/events/test track event", - "userId": "12345", - "headers": { - "Content-Type": "application/json", - "Authorization": "xyz" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - "metadata": [ - { - "jobId": 1 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - }, - { - "batchedRequest": { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "search": "abc", - "request_ip": "0.0.0.0", - "title": "Test Page", - "url": "www.rudderlabs.com", - "referrer": "Rudder", - "userId": "12345", - "keen": { - "addons": [ - { - "input": { - "ip": "request_ip" - }, - "name": "keen:ip_to_geo", - "output": "ip_geo_info" - }, - { - "input": { - "ua_string": "user_agent" - }, - "name": "keen:ua_parser", - "output": "parsed_user_agent" - } - ] - }, - "anonymousId": "00000000000000000000000000", - "user": { - "traits": { - "anonymousId": "anon-id", - "email": "test@gmail.com" - }, - "userId": "12345" - }, - "path": "/test", - "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.keen.io/3.0/projects/abcde/events/Viewed ApplicationLoaded page", - "userId": "12345", - "headers": { - "Content-Type": "application/json", - "Authorization": "xyz" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST", - "statusCode": 200 - }, - "metadata": [ - { - "jobId": 2 - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "projectID": "abcde", - "writeKey": "xyz", - "ipAddon": true, - "uaAddon": true, - "urlAddon": true, - "referrerAddon": true - } - } - } -] diff --git a/test/__tests__/data/kissmetrics_input.json b/test/__tests__/data/kissmetrics_input.json deleted file mode 100644 index 4a45f994e7..0000000000 --- a/test/__tests__/data/kissmetrics_input.json +++ /dev/null @@ -1,464 +0,0 @@ -[ - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "dd266c67-9199-4a52-ba32-f46ddde67312", - "originalTimestamp": "2020-01-24T06:29:02.358Z", - "properties": { - "path": "/tests/html/index2.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index2.html" - }, - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53708", - "sentAt": "2020-01-24T06:29:02.359Z", - "timestamp": "2020-01-24T11:59:02.402+05:30", - "type": "page", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 1, - "messageId": "dd266c67-9199-4a52-ba32-f46ddde67312", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "city": "Disney-1", - "country": "India", - "email": "test@rudderstack.com", - "firstname": "Test" - }, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "originalTimestamp": "2020-01-24T06:29:02.362Z", - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53709", - "sentAt": "2020-01-24T06:29:02.363Z", - "timestamp": "2020-01-24T11:59:02.402+05:30", - "type": "identify", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 2, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "originalTimestamp": "2020-01-24T06:29:02.362Z", - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53709", - "sentAt": "2020-01-24T06:29:02.363Z", - "timestamp": "2020-01-24T11:59:02.402+05:30", - "type": "identify", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 2, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "event": "test revenue kissmetrics", - "integrations": { - "All": true - }, - "messageId": "a6a0ad5a-bd26-4f19-8f75-38484e580fc7", - "originalTimestamp": "2020-01-24T06:29:02.364Z", - "properties": { - "currency": "USD", - "revenue": 50 - }, - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53710", - "sentAt": "2020-01-24T06:29:02.364Z", - "timestamp": "2020-01-24T11:59:02.403+05:30", - "type": "track", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 3, - "messageId": "a6a0ad5a-bd26-4f19-8f75-38484e580fc7", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "79313729-7fe5-4204-963a-dc46f4205e4e", - "originalTimestamp": "2020-01-24T06:29:02.366Z", - "previousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53711", - "sentAt": "2020-01-24T06:29:02.366Z", - "timestamp": "2020-01-24T11:59:02.403+05:30", - "type": "alias", - "userId": "1234abc" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 4, - "messageId": "79313729-7fe5-4204-963a-dc46f4205e4e", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "event": "KM Order Completed", - "integrations": { - "All": true - }, - "messageId": "aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a", - "originalTimestamp": "2020-01-24T06:29:02.367Z", - "properties": { - "affiliation": "Google Store", - "checkout_id": "fksdjfsdjfisjf9sdfjsd9f", - "coupon": "hasbros", - "currency": "USD", - "discount": 2.5, - "order_id": "50314b8e9bcf000000000000", - "products": [ - { - "category": "Games", - "image_url": "https:///www.example.com/product/path.jpg", - "name": "Monopoly: 3rd Edition", - "price": 19, - "product_id": "507f1f77bcf86cd799439011", - "quantity": 1, - "sku": "45790-32", - "url": "https://www.example.com/product/path" - }, - { - "category": "Games", - "name": "Uno Card Game", - "price": 3, - "product_id": "505bd76785ebb509fc183733", - "quantity": 2, - "sku": "46493-32" - } - ], - "revenue": 25, - "shipping": 3, - "subtotal": 22.5, - "tax": 2, - "total": 27.5 - }, - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53712", - "sentAt": "2020-01-24T06:29:02.368Z", - "timestamp": "2020-01-24T11:59:02.402+05:30", - "type": "track", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 5, - "messageId": "aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - } -] diff --git a/test/__tests__/data/kissmetrics_output.json b/test/__tests__/data/kissmetrics_output.json deleted file mode 100644 index aa35778490..0000000000 --- a/test/__tests__/data/kissmetrics_output.json +++ /dev/null @@ -1,218 +0,0 @@ -[ - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/e", - "headers": {}, - "params": { - "Page-path": "/tests/html/index2.html", - "Page-referrer": "", - "Page-search": "", - "Page-title": "", - "Page-url": "http://localhost/tests/html/index2.html", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_n": "Loaded a Page", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/s", - "headers": {}, - "params": { - "city": "Disney-1", - "country": "India", - "email": "test@rudderstack.com", - "firstname": "Test", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/s", - "headers": {}, - "params": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/e", - "headers": {}, - "params": { - "test revenue kissmetrics-currency": "USD", - "test revenue kissmetrics - revenue": 50, - "Billing Amount": 50, - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_n": "test revenue kissmetrics", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/a", - "headers": {}, - "params": { - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_n": "1234abc" - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "1234abc", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/e", - "headers": {}, - "params": { - "KM Order Completed-affiliation": "Google Store", - "KM Order Completed-checkout_id": "fksdjfsdjfisjf9sdfjsd9f", - "KM Order Completed-coupon": "hasbros", - "KM Order Completed-currency": "USD", - "KM Order Completed-discount": 2.5, - "KM Order Completed-order_id": "50314b8e9bcf000000000000", - "KM Order Completed - revenue": 25, - "Billing Amount": 25, - "KM Order Completed-shipping": 3, - "KM Order Completed-subtotal": 22.5, - "KM Order Completed-tax": 2, - "KM Order Completed-total": 27.5, - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_n": "KM Order Completed", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/s", - "headers": {}, - "params": { - "KM Order Completed-category": "Games", - "KM Order Completed-image_url": "https:///www.example.com/product/path.jpg", - "KM Order Completed-name": "Monopoly: 3rd Edition", - "KM Order Completed-price": 19, - "KM Order Completed-product_id": "507f1f77bcf86cd799439011", - "KM Order Completed-quantity": 1, - "KM Order Completed-sku": "45790-32", - "KM Order Completed-url": "https://www.example.com/product/path", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca" - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - }, - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/s", - "headers": {}, - "params": { - "KM Order Completed-category": "Games", - "KM Order Completed-name": "Uno Card Game", - "KM Order Completed-price": 3, - "KM Order Completed-product_id": "505bd76785ebb509fc183733", - "KM Order Completed-quantity": 2, - "KM Order Completed-sku": "46493-32", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca" - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - } -] diff --git a/test/__tests__/data/kissmetrics_router_input.json b/test/__tests__/data/kissmetrics_router_input.json deleted file mode 100644 index 2cc3e74867..0000000000 --- a/test/__tests__/data/kissmetrics_router_input.json +++ /dev/null @@ -1,148 +0,0 @@ -[ - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": {}, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "messageId": "dd266c67-9199-4a52-ba32-f46ddde67312", - "originalTimestamp": "2020-01-24T06:29:02.358Z", - "properties": { - "path": "/tests/html/index2.html", - "referrer": "", - "search": "", - "title": "", - "url": "http://localhost/tests/html/index2.html" - }, - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53708", - "sentAt": "2020-01-24T06:29:02.359Z", - "timestamp": "2020-01-24T11:59:02.402+05:30", - "type": "page", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 1, - "messageId": "dd266c67-9199-4a52-ba32-f46ddde67312", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - }, - { - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - }, - "message": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.5" - }, - "ip": "0.0.0.0", - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.5" - }, - "locale": "en-GB", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - }, - "traits": { - "city": "Disney", - "country": "USA", - "email": "mickey@disney.com", - "firstname": "Mickey" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" - }, - "integrations": { - "All": true - }, - "traits": { - "city": "Disney-1", - "country": "India", - "email": "test@rudderstack.com", - "firstname": "Test" - }, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "originalTimestamp": "2020-01-24T06:29:02.362Z", - "receivedAt": "2020-01-24T11:59:02.403+05:30", - "request_ip": "[::1]:53709", - "sentAt": "2020-01-24T06:29:02.363Z", - "timestamp": "2020-01-24T11:59:02.402+05:30", - "type": "identify", - "userId": "" - }, - "metadata": { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 2, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - } -] diff --git a/test/__tests__/data/kissmetrics_router_output.json b/test/__tests__/data/kissmetrics_router_output.json deleted file mode 100644 index 4e10d57ccb..0000000000 --- a/test/__tests__/data/kissmetrics_router_output.json +++ /dev/null @@ -1,120 +0,0 @@ -[ - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/e", - "headers": {}, - "params": { - "Page-path": "/tests/html/index2.html", - "Page-referrer": "", - "Page-search": "", - "Page-title": "", - "Page-url": "http://localhost/tests/html/index2.html", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_n": "Loaded a Page", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - } - ], - "metadata": [ - { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 1, - "messageId": "dd266c67-9199-4a52-ba32-f46ddde67312", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - } - }, - { - "batchedRequest": [ - { - "version": "1", - "type": "REST", - "method": "GET", - "endpoint": "https://trk.kissmetrics.com/s", - "headers": {}, - "params": { - "city": "Disney-1", - "country": "India", - "email": "test@rudderstack.com", - "firstname": "Test", - "_k": "dummyApiKey", - "_p": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "_t": "1579847342", - "_d": 1 - }, - "body": { - "JSON": {}, - "XML": {}, - "JSON_ARRAY": {}, - "FORM": {} - }, - "files": {}, - "userId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "statusCode": 200 - } - ], - "metadata": [ - { - "anonymousId": "e6ab2c5e-2cda-44a9-a962-e2f67df78bca", - "destinationId": "1WhcOCGgj9asZu850HvugU2C3Aq", - "destinationType": "KISSMETRICS", - "jobId": 2, - "messageId": "2536eda4-d638-4c93-8014-8ffe3f083214", - "sourceId": "1WjrlZIy1d41MCceOrFbDVPnOPY" - } - ], - "batched": false, - "statusCode": 200, - "destination": { - "Config": { - "apiKey": "dummyApiKey", - "prefixProperties": true, - "useNativeSDK": false - }, - "DestinationDefinition": { - "DisplayName": "Kiss Metrics", - "ID": "1WhbSZ6uA3H5ChVifHpfL2H6sie", - "Name": "KISSMETRICS" - }, - "Enabled": true, - "ID": "1WhcOCGgj9asZu850HvugU2C3Aq", - "Name": "Kiss Metrics", - "Transformations": [] - } - } -] diff --git a/test/__tests__/data/snapchat_conversion_router_input.json b/test/__tests__/data/snapchat_conversion_router_input.json index cc2110f775..2833dce9d5 100644 --- a/test/__tests__/data/snapchat_conversion_router_input.json +++ b/test/__tests__/data/snapchat_conversion_router_input.json @@ -19,12 +19,10 @@ "advertisingId": "T0T0T072-5e28-45a1-9eda-ce22a3e36d1a", "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", "manufacturer": "Google", - "model": "AOSP on IA Emulator", "name": "generic_x86_arm", "type": "ios", "attTrackingStatus": 3 }, - "library": { "name": "RudderLabs JavaScript SDK", "version": "1.0.0" @@ -86,12 +84,10 @@ "advertisingId": "T0T0T072-5e28-45a1-9eda-ce22a3e36d1a", "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", "manufacturer": "Google", - "model": "AOSP on IA Emulator", "name": "generic_x86_arm", "type": "ios", "attTrackingStatus": 3 }, - "library": { "name": "RudderLabs JavaScript SDK", "version": "1.0.0" @@ -153,12 +149,10 @@ "advertisingId": "T0T0T072-5e28-45a1-9eda-ce22a3e36d1a", "id": "3f034872-5e28-45a1-9eda-ce22a3e36d1a", "manufacturer": "Google", - "model": "AOSP on IA Emulator", "name": "generic_x86_arm", "type": "ios", "attTrackingStatus": 3 }, - "library": { "name": "RudderLabs JavaScript SDK", "version": "1.0.0" diff --git a/test/__tests__/data/statsig_cdk_output.json b/test/__tests__/data/statsig_cdk_output.json deleted file mode 100644 index d0601e8df9..0000000000 --- a/test/__tests__/data/statsig_cdk_output.json +++ /dev/null @@ -1,607 +0,0 @@ -[ - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSPonIAEmulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "identify@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9112340345", - "username": "john_sparrow" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "Product Clicked", - "integrations": { - "All": true - }, - "messageId": "1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06", - "properties": { - "revenue": "30", - "currency": "USD", - "quantity": "5", - "test_key_2": { - "test_child_key_1": "test_child_value_1" - }, - "price": "58.0" - }, - "originalTimestamp": "2020-05-25T18:37:10.917Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "track", - "userId": "sample_user_id" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-tHe5ecr37" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "identify@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "identify", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "identify", - "userId": "sample_user_id" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-tHe5ecr37" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "page@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "page", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "page", - "userId": "sample_user_id" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-tHe5ecr37" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "screen@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "screen", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "screen", - "userId": "sample_user_id" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-tHe5ecr37" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "screen@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "screen", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "screen", - "userId": "sample_user_id" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-4n07h3rsecr3t" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "Shehan Study", - "category": "SampleIdentify", - "email": "test@rudderstack.com", - "plan": "Open source", - "logins": 5, - "createdAt": 1599264000 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.5" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 0.8999999761581421 - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign", - "test": "other value" - }, - "page": { - "path": "/destinations/amplitude", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/amplitude", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "alias", - "messageId": "dd46338d-5f83-493b-bd28-3b48f55d0be8", - "originalTimestamp": "2020-10-20T08:14:28.778Z", - "anonymousId": "my-anonymous-id-new", - "userId": "newUserIdAlias", - "integrations": { - "All": true - }, - "previousId": "sampleusrRudder3", - "sentAt": "2020-10-20T08:14:28.778Z" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-tHe5ecr37" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "body": { - "XML": {}, - "JSON_ARRAY": {}, - "JSON": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "type": "group", - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "FORM": {} - }, - "files": {}, - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "content-type": "application/json", - "STATSIG-API-KEY": "secret-tHe5ecr37" - }, - "version": "1", - "params": {}, - "type": "REST", - "method": "POST" - }, - { - "error": "message type NOT_A_TYPE is not supported" - } -] diff --git a/test/__tests__/data/user_transformation_service_filter_input.json b/test/__tests__/data/user_transformation_service_filter_input.json index 3b8425562d..966031e7bb 100644 --- a/test/__tests__/data/user_transformation_service_filter_input.json +++ b/test/__tests__/data/user_transformation_service_filter_input.json @@ -181,5 +181,67 @@ } ] } + }, + { + "message": { + "channel": "web", + "context": { + "app": { + "build": "1.0.0", + "name": "RudderLabs JavaScript SDK", + "namespace": "com.rudderlabs.javascript", + "version": "1.0.0" + }, + "traits": { + "email": "test@rudderstack.com", + "anonymousId": "12345" + }, + "library": { + "name": "RudderLabs JavaScript SDK", + "version": "1.0.0" + }, + "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", + "locale": "en-US", + "ip": "0.0.0.0", + "os": { + "name": "", + "version": "" + }, + "screen": { + "density": 2 + } + }, + "type": "non-standard", + "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", + "originalTimestamp": "2019-10-14T11:15:18.300Z", + "anonymousId": "00000000000000000000000000", + "userId": "12345", + "event": "test track event GA3", + "properties": { + "user_actual_role": "system_admin, system_user", + "user_actual_id": 12345 + }, + "integrations": { + "All": true + }, + "sentAt": "2019-10-14T11:15:53.296Z" + }, + "metadata": { + "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", + "sourceId": "s1", + "destinationId": "d1" + }, + "destination": { + "ID": 2, + "Config": { + "trackingID": "abcd" + }, + "Enabled": true, + "Transformations": [ + { + "VersionID": "24" + } + ] + } } ] diff --git a/test/__tests__/data/user_transformation_service_filter_output.json b/test/__tests__/data/user_transformation_service_filter_output.json index 64d8fd9261..2d2c03349e 100644 --- a/test/__tests__/data/user_transformation_service_filter_output.json +++ b/test/__tests__/data/user_transformation_service_filter_output.json @@ -68,6 +68,15 @@ "destinationId": "d1" }, "statusCode": 200 + }, + { + "error": "Error: non-standard event\n at transformEvent (base transformation:5:56)", + "metadata": { + "destinationId": "d1", + "messageId": "ec5481b6-a926-4d2e-b293-0b3a77c4d3be", + "sourceId": "s1" + }, + "statusCode": 400 } ], "retryStatus": 200 diff --git a/test/__tests__/eloqua-cdk.test.ts b/test/__tests__/eloqua-cdk.test.ts index aeef8f7f29..455e738b26 100644 --- a/test/__tests__/eloqua-cdk.test.ts +++ b/test/__tests__/eloqua-cdk.test.ts @@ -1,8 +1,6 @@ import fs from 'fs'; import path from 'path'; -import { - processCdkV2Workflow -} from '../../src/cdk/v2/handler'; +import { processCdkV2Workflow } from '../../src/cdk/v2/handler'; import tags from '../../src/v0/util/tags'; const integration = 'eloqua'; diff --git a/test/__tests__/facebook.test.js b/test/__tests__/facebook.test.js deleted file mode 100644 index cd82a9058c..0000000000 --- a/test/__tests__/facebook.test.js +++ /dev/null @@ -1,50 +0,0 @@ -const integration = "fb"; -const name = "Facebook"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -inputData.forEach((input, index) => { - test(`${name} Tests: payload - ${index}`, () => { - let output, expected; - try { - output = transformer.process(input); - expected = expectedData[index]; - } catch (error) { - output = error.message; - expected = expectedData[index].message; - } - expect(output).toEqual(expected); - }); -}); - -describe(`${name} Tests`, () => { - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/campaign_manager.test.js b/test/__tests__/facebook_conversions.js similarity index 86% rename from test/__tests__/campaign_manager.test.js rename to test/__tests__/facebook_conversions.js index 4f3a40d520..a450952efe 100644 --- a/test/__tests__/campaign_manager.test.js +++ b/test/__tests__/facebook_conversions.js @@ -1,5 +1,5 @@ -const integration = "campaign_manager"; -const name = "campaign_manager"; +const integration = "facebook_conversions"; +const name = "facebook_conversions"; const fs = require("fs"); const path = require("path"); @@ -13,7 +13,7 @@ const testDataFile = fs.readFileSync( ); const testData = JSON.parse(testDataFile); -// Router Test files +// Router Test Data const inputRouterDataFile = fs.readFileSync( path.resolve(__dirname, `./data/${integration}_router_input.json`) ); @@ -28,8 +28,7 @@ describe(`${name} Tests`, () => { testData.forEach((dataPoint, index) => { it(`${index}. ${integration} - ${dataPoint.description}`, async () => { try { - let output = await transformer.process(dataPoint.input); - delete output.body.JSON.idempotency; + const output = await transformer.process(dataPoint.input); expect(output).toEqual(dataPoint.output); } catch (error) { expect(error.message).toEqual(dataPoint.output.error); diff --git a/test/__tests__/facebook_offline_conversions.test.js b/test/__tests__/facebook_offline_conversions.test.js deleted file mode 100644 index aafecc9f96..0000000000 --- a/test/__tests__/facebook_offline_conversions.test.js +++ /dev/null @@ -1,85 +0,0 @@ -const fs = require("fs"); -const path = require("path"); - -const integration = "facebook_offline_conversions"; -const name = "facebook_offline_conversions"; -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test files -const routerTestDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router.json`) -); -const routerTestData = JSON.parse(routerTestDataFile); - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach((dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - let output = []; - let expected; - try { - const payload = transformer.process(dataPoint.input); - payload.forEach(eachPayload => { - const queryParams = eachPayload.endpoint.split("?")[1]; - const queryPramsArray = new URLSearchParams(queryParams); - const response = {}; - for (let pair of queryPramsArray.entries()) { - response[pair[0]] = pair[1]; - } - output.push(response); - }); - expected = dataPoint.output; - } catch (error) { - output = error.message; - expected = dataPoint.output.error; - } - expect(output).toEqual(expected); - }); - }); - }); - - describe("Router Tests", () => { - routerTestData.forEach(async dataPoint => { - it("Payload", async () => { - const batchedResponse = await transformer.processRouterDest( - dataPoint.input - ); - const output = []; - batchedResponse.forEach(response => { - const { statusCode } = response; - if (statusCode === 200) { - const data = []; - const { - batchedRequest, - destination, - batched, - metadata, - statusCode - } = response; - batchedRequest.forEach(request => { - const { endpoint } = request; - const queryParams = endpoint.split("?")[1]; - const queryPramsArray = new URLSearchParams(queryParams); - const batchResponse = {}; - for (let pair of queryPramsArray.entries()) { - batchResponse[pair[0]] = pair[1]; - } - data.push(batchResponse); - }); - output.push({ destination, batched, metadata, statusCode, data }); - } else { - output.push(response); - } - }); - expect(output).toEqual(dataPoint.output); - }); - }); - }); -}); diff --git a/test/__tests__/fb_custom_audience.test.js b/test/__tests__/fb_custom_audience.test.js deleted file mode 100644 index 423e511526..0000000000 --- a/test/__tests__/fb_custom_audience.test.js +++ /dev/null @@ -1,66 +0,0 @@ -const fs = require("fs"); -const path = require("path"); - -const integration = "fb_custom_audience"; -const name = "fb_custom_audience"; -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test files -const routerTestDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router.json`) -); -const routerTestData = JSON.parse(routerTestDataFile); - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach(async (dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - try { - const output = await transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.error); - } - }); - }); - }); - - describe("Router Tests", () => { - routerTestData.forEach(async dataPoint => { - it("Payload", async () => { - const output = await transformer.processRouterDest(dataPoint.input); - expect(output).toEqual(dataPoint.output); - }); - }); - }); -}); - -describe("Router Tests for rETL sources", () => { - it("should send events to dest", async () => { - const input = JSON.parse( - fs.readFileSync( - path.resolve( - __dirname, - `data/${integration}_router_rETL_input.json` - ) - ) - ); - const output = JSON.parse( - fs.readFileSync( - path.resolve( - __dirname, - `data/${integration}_router_rETL_output.json` - ) - ) - ); - const actualOutput = await transformer.processRouterDest(input); - expect(actualOutput).toEqual(output); - }); -}); diff --git a/test/__tests__/fbpixel.test.js b/test/__tests__/fbpixel.test.js deleted file mode 100644 index 6d593ddd1b..0000000000 --- a/test/__tests__/fbpixel.test.js +++ /dev/null @@ -1,53 +0,0 @@ -const integration = "facebook_pixel"; -const name = "Fbpixel"; - -const fs = require("fs"); -const path = require("path"); -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -Date.now = jest.fn(() => new Date("2019-09-01T15:46:51.000Z")); //2019-09-01T15:46:51.693229+05:30 - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - if (error.statTags) { - expect(error.statTags).toMatchObject(expectedData[index].statTags); - } - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/firehose.test.js b/test/__tests__/firehose.test.js deleted file mode 100644 index feff4e2f9d..0000000000 --- a/test/__tests__/firehose.test.js +++ /dev/null @@ -1,29 +0,0 @@ -const integration = "firehose"; -const name = "FIREHOSE"; - -const fs = require("fs"); -const path = require("path"); -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); - -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -inputData.forEach((input, index) => { - it(`${name} Tests: payload: ${index}`, () => { - try { - const output = transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); -}); diff --git a/test/__tests__/googlepubsub.test.js b/test/__tests__/googlepubsub.test.js deleted file mode 100644 index a18f4c3405..0000000000 --- a/test/__tests__/googlepubsub.test.js +++ /dev/null @@ -1,29 +0,0 @@ -const integration = "googlepubsub"; -const name = "GOOGLEPUBSUB"; - -const fs = require("fs"); -const path = require("path"); -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); - -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -inputData.forEach((input, index) => { - it(`${name} Tests: payload: ${index}`, () => { - try { - const output = transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); -}); diff --git a/test/__tests__/googlesheets.test.js b/test/__tests__/googlesheets.test.js deleted file mode 100644 index 6a39d96073..0000000000 --- a/test/__tests__/googlesheets.test.js +++ /dev/null @@ -1,46 +0,0 @@ -const integration = "googlesheets"; -const name = "Google Sheets"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test files -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); -}); - -describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - // console.log(JSON.stringify(routerOutput)); - expect(routerOutput).toEqual(expectedRouterData); - }); -}); diff --git a/test/__tests__/heap-cdk.test.ts b/test/__tests__/heap-cdk.test.ts deleted file mode 100644 index 8ba69cb89c..0000000000 --- a/test/__tests__/heap-cdk.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { processCdkV2Workflow } from '../../src/cdk/v2/handler'; -import tags from '../../src/v0/util/tags'; - -const integration = 'heap'; -const destName = 'Heap'; - -const inputDataFile = fs.readFileSync(path.resolve(__dirname, `./data/${integration}_input.json`), { - encoding: 'utf8', -}); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_cdk_output.json`), - { encoding: 'utf8' }, -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -describe(`${destName} Tests`, () => { - describe('Processor Tests', () => { - inputData.forEach((input, index) => { - it(`${destName} - payload: ${index}`, async () => { - const expected = expectedData[index]; - try { - const output = await processCdkV2Workflow(integration, input, tags.FEATURES.PROCESSOR); - expect(output).toEqual(expected); - } catch (error: any) { - expect(error.message).toEqual(expected.error); - } - }); - }); - }); -}); diff --git a/test/__tests__/heap.test.js b/test/__tests__/heap.test.js deleted file mode 100644 index d2b226aea3..0000000000 --- a/test/__tests__/heap.test.js +++ /dev/null @@ -1,7 +0,0 @@ -const { - getDestFromTestFile, - executeTransformationTest -} = require("./utilities/test-utils"); - -executeTransformationTest(getDestFromTestFile(__filename), "processor"); -executeTransformationTest(getDestFromTestFile(__filename), "router"); diff --git a/test/__tests__/impact.test.js b/test/__tests__/impact.test.js deleted file mode 100644 index 8a741840de..0000000000 --- a/test/__tests__/impact.test.js +++ /dev/null @@ -1,43 +0,0 @@ -const fs = require("fs"); -const path = require("path"); - -const integration = "impact"; -const name = "IMPACT"; -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test files -const routerTestDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router.json`) -); -const routerTestData = JSON.parse(routerTestDataFile); - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach((dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, () => { - try { - const output = transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.error); - } - }); - }); - }); - - describe("Router Tests", () => { - routerTestData.forEach(dataPoint => { - it("Payload", async () => { - const output = await transformer.processRouterDest(dataPoint.input); - expect(output).toEqual(dataPoint.output); - }); - }); - }); -}); diff --git a/test/__tests__/indicative.test.js b/test/__tests__/indicative.test.js deleted file mode 100644 index cfb0ad462a..0000000000 --- a/test/__tests__/indicative.test.js +++ /dev/null @@ -1,49 +0,0 @@ -const integration = "indicative"; -const name = "Indicative"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -describe(`${name} Tests`, () => { - describe("Processor Tests", () => { - inputData.forEach((input, index) => { - it(`${name} - payload: ${index}`, async () => { - try { - const output = await transformer.process(input); - expect(output).toEqual(expectedData[index]); - } catch (error) { - expect(error.message).toEqual(expectedData[index].error); - } - }); - }); - }); - - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/iterable.test.js b/test/__tests__/iterable.test.js deleted file mode 100644 index df203bbc67..0000000000 --- a/test/__tests__/iterable.test.js +++ /dev/null @@ -1,54 +0,0 @@ -const integration = "iterable"; -const name = "Iterable"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test files -const routerTestDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router.json`) -); -const routerTestData = JSON.parse(routerTestDataFile); - -// Mocking IDENTIFY_MAX_BODY_SIZE and IDENTIFY_MAX_BATCH_SIZE variable to test batching -jest.mock(`../../src/${version}/destinations/${integration}/config`, () => { - const originalConfig = jest.requireActual(`../../src/${version}/destinations/${integration}/config`); - return { - ...originalConfig, - IDENTIFY_MAX_BATCH_SIZE: 6, - IDENTIFY_MAX_BODY_SIZE_IN_BYTES: 4000 - }; -}); - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach((dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - try { - const output = await transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.message); - } - }); - }); - }); - - describe("Router", () => { - routerTestData.forEach((dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - const output = await transformer.processRouterDest(dataPoint.input); - expect(output).toEqual(dataPoint.output); - }); - }); - }); -}); diff --git a/test/__tests__/june.test.js b/test/__tests__/june.test.js deleted file mode 100644 index c8df25945a..0000000000 --- a/test/__tests__/june.test.js +++ /dev/null @@ -1,46 +0,0 @@ -const integration = "june"; -const name = "JUNE"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); - -// Processor Test files -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -// Router Test files -const routerTestDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router.json`) -); -const routerTestData = JSON.parse(routerTestDataFile); - - -describe(`${name} Tests`, () => { - describe("Processor", () => { - testData.forEach((dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, () => { - try { - const output = transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.error); - } - }); - }); - }); - - describe("Router", () => { - routerTestData.forEach(async dataPoint => { - it("Payload", async () => { - const output = await transformer.processRouterDest(dataPoint.input); - expect(output).toEqual(dataPoint.output); - }); - }); - }); -}); \ No newline at end of file diff --git a/test/__tests__/kafka.test.js b/test/__tests__/kafka.test.js deleted file mode 100644 index c824b9612f..0000000000 --- a/test/__tests__/kafka.test.js +++ /dev/null @@ -1,65 +0,0 @@ -const integration = "kafka"; -const name = "Kafka"; - -const fs = require("fs"); -const path = require("path"); - -const transformer = require(`../../src/v0/destinations/${integration}/transform`); - -const testDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}.json`) -); -const testData = JSON.parse(testDataFile); - -const batchInputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_batch_input.json`) -); -const batchOutputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_batch_output.json`) -); - -const dataWithMetadata = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_with_metadata.json`) -); - -describe("Tests", () => { - testData.forEach(async (dataPoint, index) => { - it(`${index}. ${integration} - ${dataPoint.description}`, async () => { - try { - const output = await transformer.process(dataPoint.input); - expect(output).toEqual(dataPoint.output); - } catch (error) { - expect(error.message).toEqual(dataPoint.output.error); - } - }); - }); - - const batchInputData = JSON.parse(batchInputDataFile); - const batchExpectedData = JSON.parse(batchOutputDataFile); - batchInputData.forEach((input, index) => { - test(`Batching Tests ${index}`, () => { - const output = transformer.batch(input); - expect(Array.isArray(output)).toEqual(true); - expect(output.length).toEqual(batchExpectedData[index].length); - output.forEach((input, indexInner) => { - expect(output[indexInner]).toEqual( - batchExpectedData[index][indexInner] - ); - }); - }); - }); - - - test(`${name} Metadata parse test`, done => { - const inputData = JSON.parse(dataWithMetadata); - inputData.forEach(async (data, _) => { - try { - const output = transformer.processMetadata(data.input); - expect(output).toEqual(data.output); - done(); - } catch (error) { - done(error); - } - }); - }); -}); diff --git a/test/__tests__/keen.test.js b/test/__tests__/keen.test.js deleted file mode 100644 index b434829b17..0000000000 --- a/test/__tests__/keen.test.js +++ /dev/null @@ -1,53 +0,0 @@ -const integration = "keen"; -const name = "keen"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -// const { compareJSON } = require("./util"); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -inputData.forEach((input, index) => { - test(`${name} Tests - payload: ${index}`, () => { - let output, expected; - try { - output = transformer.process(input); - expected = expectedData[index]; - } catch (error) { - output = error.message; - expected = expectedData[index].message; - } - - expect(output).toEqual(expected); - }); -}); - -describe(`${name} Tests`, () => { - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/kissmetrics.test.js b/test/__tests__/kissmetrics.test.js deleted file mode 100644 index 64ec469d99..0000000000 --- a/test/__tests__/kissmetrics.test.js +++ /dev/null @@ -1,48 +0,0 @@ -const integration = "kissmetrics"; -const name = "kissmetrics"; - -const fs = require("fs"); -const path = require("path"); - -const version = "v0"; - -const transformer = require(`../../src/${version}/destinations/${integration}/transform`); -// const { compareJSON } = require("./util"); - -const inputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_input.json`) -); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`) -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -// Router Test Data -const inputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_input.json`) -); -const outputRouterDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_router_output.json`) -); -const inputRouterData = JSON.parse(inputRouterDataFile); -const expectedRouterData = JSON.parse(outputRouterDataFile); - -inputData.forEach((input, index) => { - test(`${name} Tests : payload: ${index}`, () => { - const output = transformer.process(input); - const outputLength = output.length; - for (let i = 0; i < outputLength; i++) { - expect(output[i]).toEqual(expectedData[index + i]); - } - }); -}); - -describe(`${name} Tests`, () => { - describe("Router Tests", () => { - it("Payload", async () => { - const routerOutput = await transformer.processRouterDest(inputRouterData); - expect(routerOutput).toEqual(expectedRouterData); - }); - }); -}); diff --git a/test/__tests__/statsig-cdk.test.ts b/test/__tests__/statsig-cdk.test.ts deleted file mode 100644 index 79bb3e9fae..0000000000 --- a/test/__tests__/statsig-cdk.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { processCdkV2Workflow } from '../../src/cdk/v2/handler'; -import tags from '../../src/v0/util/tags'; - -const integration = 'statsig'; -const destName = 'Statsig'; - -const inputDataFile = fs.readFileSync(path.resolve(__dirname, `./data/${integration}_input.json`), { - encoding: 'utf8', -}); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_cdk_output.json`), - { encoding: 'utf8' }, -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -describe(`${destName} Tests`, () => { - describe('Processor Tests', () => { - inputData.forEach((input, index) => { - it(`${destName} - payload: ${index}`, async () => { - const expected = expectedData[index]; - try { - const output = await processCdkV2Workflow(integration, input, tags.FEATURES.PROCESSOR); - expect(output).toEqual(expected); - } catch (error: any) { - expect(error.message).toEqual(expected.error); - } - }); - }); - }); -}); diff --git a/test/__tests__/statsig.test.js b/test/__tests__/statsig.test.js deleted file mode 100644 index b0b36ba187..0000000000 --- a/test/__tests__/statsig.test.js +++ /dev/null @@ -1,3 +0,0 @@ -const { executeTransformationTest } = require("./utilities/test-utils"); - -executeTransformationTest("statsig", "processor"); diff --git a/test/__tests__/user_transformation_ts.test.ts b/test/__tests__/user_transformation_ts.test.ts index 954582f212..418c42fe33 100644 --- a/test/__tests__/user_transformation_ts.test.ts +++ b/test/__tests__/user_transformation_ts.test.ts @@ -8,7 +8,7 @@ const name = 'User Transformations'; const randomID = () => Math.random().toString(36).substring(2, 15); describe('User Transform Service', () => { - fit(`Filtering ${name} Test`, async () => { + it(`Filtering ${name} Test`, async () => { const versionId = '24'; // set in input file const inputData = require(`./data/${integration}_filter_input.json`); const expectedData = require(`./data/${integration}_filter_output.json`); @@ -21,6 +21,7 @@ describe('User Transform Service', () => { const eventType = event.type; log(eventType); log(eventType.match(/track/g)); + if(eventType === 'non-standard') throw new Error('non-standard event'); if(eventType && !eventType.match(/track/g)) return; return event; } diff --git a/test/__tests__/variance-cdk.test.ts b/test/__tests__/variance-cdk.test.ts deleted file mode 100644 index 648ddaddbb..0000000000 --- a/test/__tests__/variance-cdk.test.ts +++ /dev/null @@ -1,33 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import { processCdkV2Workflow } from '../../src/cdk/v2/handler'; -import tags from '../../src/v0/util/tags'; - -const integration = 'variance'; -const destName = 'Variance'; - -const inputDataFile = fs.readFileSync(path.resolve(__dirname, `./data/${integration}_input.json`), { - encoding: 'utf8', -}); -const outputDataFile = fs.readFileSync( - path.resolve(__dirname, `./data/${integration}_output.json`), - { encoding: 'utf8' }, -); -const inputData = JSON.parse(inputDataFile); -const expectedData = JSON.parse(outputDataFile); - -describe(`${destName} Tests`, () => { - describe('Processor Tests', () => { - inputData.forEach((input, index) => { - it(`${destName} - payload: ${index}`, async () => { - const expected = expectedData[index]; - try { - const output = await processCdkV2Workflow(integration, input, tags.FEATURES.PROCESSOR); - expect(output).toEqual(expected); - } catch (error: any) { - expect(error.message).toEqual(expected.error); - } - }); - }); - }); -}); diff --git a/test/controllerUtility/ctrl-utility.test.ts b/test/controllerUtility/ctrl-utility.test.ts index 8bdfca9bfc..c3a668d7e7 100644 --- a/test/controllerUtility/ctrl-utility.test.ts +++ b/test/controllerUtility/ctrl-utility.test.ts @@ -926,7 +926,7 @@ const timestampEventsCases: timestampTestCases[] = [ traits: { timestamp: '2023-01-22T00:29:12.117+05:30', }, - mappedToDestination: true + mappedToDestination: true, }, sentAt: '2022-12-23T00:29:12.117+05:30', timestamp: '2022-11-22T00:29:10.188+05:30', @@ -1050,7 +1050,7 @@ const timestampEventsCases: timestampTestCases[] = [ originalTimestamp: '2022-12-23T00:29:12.117+05:30', channel: 'sources', context: { - mappedToDestination: true + mappedToDestination: true, }, properties: { timestamp: '2023-01-13T00:29:12.117+05:30', @@ -1112,7 +1112,7 @@ const timestampEventsCases: timestampTestCases[] = [ anonymousId: '2073232', event: 'Test', context: { - mappedToDestination: true + mappedToDestination: true, }, messageId: 'e3a51e9a-6313-4389-ae73-07e487c8d9d0', originalTimestamp: '2022-12-23T00:29:12.117+05:30', @@ -1185,7 +1185,7 @@ const timestampEventsCases: timestampTestCases[] = [ traits: { timestamp: '2023-01-22T00:29:12.117+05:30', }, - mappedToDestination: true + mappedToDestination: true, }, sentAt: '2022-12-23T00:29:12.117+05:30', timestamp: '2022-11-22T00:29:10.188+05:30', @@ -1309,7 +1309,7 @@ const timestampEventsCases: timestampTestCases[] = [ originalTimestamp: '2022-12-23T00:29:12.117+05:30', channel: 'sources', context: { - mappedToDestination: true + mappedToDestination: true, }, properties: { timestamp: '2023-01-13T00:29:12.117+05:30', @@ -1374,7 +1374,7 @@ const timestampEventsCases: timestampTestCases[] = [ originalTimestamp: '2022-12-23T00:29:12.117+05:30', channel: 'sources', context: { - mappedToDestination: true + mappedToDestination: true, }, properties: { timestamp: '2023-01-13T00:29:12.117+05:30', diff --git a/test/integrations/component.test.ts b/test/integrations/component.test.ts index 5e011e4115..8b2a2ec7bd 100644 --- a/test/integrations/component.test.ts +++ b/test/integrations/component.test.ts @@ -17,24 +17,25 @@ import { getAllTestMockDataFilePaths, addMock, } from './testUtils'; -import tags, { FEATURES } from '../../src/v0/util/tags'; +import tags from '../../src/v0/util/tags'; import { Server } from 'http'; import { appendFileSync } from 'fs'; import { responses } from '../testHelper'; -import utils from '../../src/v0/util'; -import isMatch from 'lodash/isMatch'; // To run single destination test cases // npm run test:ts -- component --destination=adobe_analytics +// npm run test:ts -- component --destination=adobe_analytics --feature=router +// npm run test:ts -- component --destination=adobe_analytics --feature=router --index=0 // Use below command to generate mocks // npm run test:ts -- component --destination=zendesk --generate=true // npm run test:ts:component:generateNwMocks -- --destination=zendesk const command = new Command(); -command.allowUnknownOption().option('-d, --destination ', 'Enter Destination Name').parse(); -// This option will only work when destination option is also provided command .allowUnknownOption() + .option('-d, --destination ', 'Enter Destination Name') + .option('-f, --feature ', 'Enter Feature Name(processor, router)') + .option('-i, --index ', 'Enter Test index') .option('-g, --generate ', 'Enter "true" If you want to generate network file') .parse(); @@ -94,7 +95,7 @@ if (!opts.generate || opts.generate === 'false') { // END const rootDir = __dirname; -const allTestDataFilePaths = getTestDataFilePaths(rootDir, opts.destination); +const allTestDataFilePaths = getTestDataFilePaths(rootDir, opts); const DEFAULT_VERSION = 'v0'; const testRoute = async (route, tcData: TestCaseData) => { @@ -177,22 +178,27 @@ describe.each(allTestDataFilePaths)('%s Tests', (testDataPath) => { jest.clearAllMocks(); }); // add special mocks for specific destinations - const testData: TestCaseData[] = getTestData(testDataPath); - test.each(testData)('$name - $module - $feature -> $description', async (tcData) => { - tcData?.mockFns?.(mock); - - switch (tcData.module) { - case tags.MODULES.DESTINATION: - await destinationTestHandler(tcData); - break; - case tags.MODULES.SOURCE: - await sourceTestHandler(tcData); - break; - default: - console.log('Invalid module'); - // Intentionally fail the test case - expect(true).toEqual(false); - break; - } + let testData: TestCaseData[] = getTestData(testDataPath); + if (opts.index !== undefined) { + testData = [testData[parseInt(opts.index)]]; + } + describe(`${testData[0].name} ${testData[0].module}`, () => { + test.each(testData)('$feature -> $description', async (tcData) => { + tcData?.mockFns?.(mock); + + switch (tcData.module) { + case tags.MODULES.DESTINATION: + await destinationTestHandler(tcData); + break; + case tags.MODULES.SOURCE: + await sourceTestHandler(tcData); + break; + default: + console.log('Invalid module'); + // Intentionally fail the test case + expect(true).toEqual(false); + break; + } + }); }); }); diff --git a/test/integrations/destinations/algolia/processor/data.ts b/test/integrations/destinations/algolia/processor/data.ts new file mode 100644 index 0000000000..f5c01e47e5 --- /dev/null +++ b/test/integrations/destinations/algolia/processor/data.ts @@ -0,0 +1,1232 @@ +export const data = [ + { + name: 'algolia', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product clicked', + userId: 'testuserId1', + properties: { + index: 'products', + filters: ['field1:hello', 'val1:val2'], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'cLick ', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + FORM: {}, + JSON_ARRAY: {}, + JSON: { + events: [ + { + eventName: 'product clicked', + eventType: 'click', + filters: ['field1:hello', 'val1:val2'], + index: 'products', + userToken: 'testuserId1', + }, + ], + }, + XML: {}, + }, + endpoint: 'https://insights.algolia.io/1/events', + files: {}, + headers: { + 'X-Algolia-API-Key': 'dummyApiKey', + 'X-Algolia-Application-Id': 'O2YARRI15I', + }, + method: 'POST', + params: {}, + type: 'REST', + userId: '', + version: '1', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product list viewed', + userId: 'testuserId1', + properties: { + index: 'products', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: 7, + }, + { + objectId: '9780439784542', + position: 8, + }, + ], + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product list viewed', + to: 'click', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + FORM: {}, + JSON_ARRAY: {}, + JSON: { + events: [ + { + eventName: 'product list viewed', + eventType: 'click', + objectIDs: ['ecommerce-sample-data-919', '9780439784542'], + positions: [7, 8], + index: 'products', + userToken: 'testuserId1', + queryID: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + ], + }, + XML: {}, + }, + endpoint: 'https://insights.algolia.io/1/events', + files: {}, + headers: { + 'X-Algolia-API-Key': 'dummyApiKey', + 'X-Algolia-Application-Id': 'O2YARRI15I', + }, + method: 'POST', + params: {}, + type: 'REST', + userId: '', + version: '1', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product clicked', + userId: 'testuserId1', + properties: { + eventType: 'click', + index: 'products', + queryId: '43b15df305339e827f0ac0bdc5ebcaa8', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Either filters or objectIds is required.', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: 'testuserId1', + event: 'product clicked', + properties: { + index: 'products', + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'eventType is mandatory for track call', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product list viewed', + userId: 'testuserId1', + properties: { + index: 'products', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: 7, + }, + { + objectId: '9780439784542', + position: 8, + }, + ], + queryId: '', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product list viewed', + to: 'click', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: + 'for click eventType either both positions and queryId should be present or none', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product list viewed', + userId: 'testuserId1', + properties: { + index: 'products', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: 7, + }, + { + objectId: '9780439784542', + position: 8, + }, + ], + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product list viewed', + to: 'view', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + FORM: {}, + JSON_ARRAY: {}, + JSON: { + events: [ + { + eventName: 'product list viewed', + eventType: 'view', + index: 'products', + objectIDs: ['ecommerce-sample-data-919', '9780439784542'], + userToken: 'testuserId1', + queryID: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + ], + }, + XML: {}, + }, + endpoint: 'https://insights.algolia.io/1/events', + files: {}, + headers: { + 'X-Algolia-API-Key': 'dummyApiKey', + 'X-Algolia-Application-Id': 'O2YARRI15I', + }, + method: 'POST', + params: {}, + type: 'REST', + userId: '', + version: '1', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product list viewed', + userId: 'testuserId1', + properties: { + index: 'products', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: '7', + }, + { + objectId: '9780439784542', + position: 'a', + }, + ], + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product list viewed', + to: 'click', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: + 'for click eventType either both positions and queryId should be present or none', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product list viewed', + userId: 'testuserId1', + properties: { + index: 'products', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: '7', + }, + { + objectId: '9780439784542', + position: 'a', + }, + ], + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product list viewed', + to: 'check', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'eventType can be either click, view or conversion', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product list viewed', + userId: 'testuserId1', + properties: { + index: 'products', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: '7', + }, + { + objectId: '9780439784542', + position: 'a', + }, + ], + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'eventType is mandatory for track call', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product clicked', + userId: 'testuserId1', + properties: { + filters: ['field1:hello', 'val1:val2'], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'cLick ', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from "properties.index"', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'algolia', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: ['abc', 'def'], + userId: 'testuserId1', + properties: { + filters: ['field1:hello', 'val1:val2'], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'cLick ', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'event name should be a string', + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/algolia/router/data.ts b/test/integrations/destinations/algolia/router/data.ts new file mode 100644 index 0000000000..aaf3e224e3 --- /dev/null +++ b/test/integrations/destinations/algolia/router/data.ts @@ -0,0 +1,2363 @@ +export const data = [ + { + name: 'algolia', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + type: 'track', + event: 'product list viewed', + sentAt: '2021-10-25T09:40:08.880Z', + userId: 'test-user-id1', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.1', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:5500/index.html', + path: '/index.html', + title: 'Test', + search: '', + tab_url: 'http://127.0.0.1:5500/index.html', + referrer: 'http://127.0.0.1:5500/index.html', + initial_referrer: 'http://127.0.0.1:5500/index.html', + referring_domain: '127.0.0.1:5500', + initial_referring_domain: '127.0.0.1:5500', + }, + locale: 'en-GB', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 1440, + innerHeight: 335, + }, + traits: { + city: 'Brussels', + email: 'testemail@email.com', + phone: '1234567890', + country: 'Belgium', + firstName: 'Tintin', + custom_date: 1574769933368, + custom_date1: '2019-10-14T11:15:53.296Z', + custom_flavor: 'chocolate', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.1', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36', + }, + rudderId: 'e3e907f1-f79a-444b-b91d-da47488f8273', + messageId: '8cdd3d2e-5e07-42ec-abdc-9b6bd4333840', + timestamp: '2021-10-25T15:10:08.888+05:30', + properties: { + index: 'products', + queryId: '43b15df305339e827f0ac0bdc5ebcaa7', + products: [ + { + objectId: 'ecommerce-sample-data-919', + position: 7, + }, + { + objectId: '9780439784542', + position: 8, + }, + ], + }, + receivedAt: '2021-10-25T15:10:08.889+05:30', + request_ip: '[::1]', + anonymousId: '7138f7d9-5dd2-4337-805d-ca17be59dc8e', + integrations: { + All: true, + }, + originalTimestamp: '2021-10-25T09:40:08.879Z', + }, + metadata: { + jobId: 1, + }, + destination: { + ID: '1zzHtStW2ZPlullmz6L7DGnmk9V', + Name: 'algolia-dev', + DestinationDefinition: { + ID: '1zgVZhcj1Tij4qlKg7B1Jp16IrH', + Name: 'ALGOLIA', + DisplayName: 'Algolia', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'applicationId', 'eventTypeSettings'], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['apiKey', 'applicationId'], + supportedMessageTypes: ['track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'apiKey', + applicationId: 'appId', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'click', + }, + { + from: 'product list viewed', + to: 'view', + }, + ], + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + type: 'track', + event: 'product clicked', + sentAt: '2021-10-25T09:40:08.886Z', + userId: 'test-user-id1', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.1', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:5500/index.html', + path: '/index.html', + title: 'Test', + search: '', + tab_url: 'http://127.0.0.1:5500/index.html', + referrer: 'http://127.0.0.1:5500/index.html', + initial_referrer: 'http://127.0.0.1:5500/index.html', + referring_domain: '127.0.0.1:5500', + initial_referring_domain: '127.0.0.1:5500', + }, + locale: 'en-GB', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 1440, + innerHeight: 335, + }, + traits: { + city: 'Brussels', + email: 'testemail@email.com', + phone: '1234567890', + country: 'Belgium', + firstName: 'Tintin', + custom_date: 1574769933368, + custom_date1: '2019-10-14T11:15:53.296Z', + custom_flavor: 'chocolate', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.1', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36', + }, + rudderId: 'e3e907f1-f79a-444b-b91d-da47488f8273', + messageId: '7b58e140-b66b-4e88-a5ec-bd6811fc3836', + timestamp: '2021-10-25T15:10:08.943+05:30', + properties: { + index: 'products', + filters: ['field1:hello', 'val1:val2'], + }, + receivedAt: '2021-10-25T15:10:08.943+05:30', + request_ip: '[::1]', + anonymousId: '7138f7d9-5dd2-4337-805d-ca17be59dc8e', + integrations: { + All: true, + }, + originalTimestamp: '2021-10-25T09:40:08.886Z', + }, + metadata: { + jobId: 2, + }, + destination: { + ID: '1zzHtStW2ZPlullmz6L7DGnmk9V', + Name: 'algolia-dev', + DestinationDefinition: { + ID: '1zgVZhcj1Tij4qlKg7B1Jp16IrH', + Name: 'ALGOLIA', + DisplayName: 'Algolia', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'applicationId', 'eventTypeSettings'], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['apiKey', 'applicationId'], + supportedMessageTypes: ['track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'apiKey-2', + applicationId: 'appId-2', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'click', + }, + { + from: 'product list viewed', + to: 'view', + }, + ], + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'testone@gmail.com', + firstName: 'test', + lastName: 'one', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/ometria', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/ometria', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'track', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + event: 'product clicked', + userId: 'testuserId1', + properties: { + filters: ['field1:hello', 'val1:val2'], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + metadata: { + jobId: 3, + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'cLick ', + }, + ], + }, + }, + }, + ], + destType: 'algolia', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://insights.algolia.io/1/events', + headers: { + 'X-Algolia-Application-Id': 'appId', + 'X-Algolia-API-Key': 'apiKey', + }, + params: {}, + body: { + JSON: { + events: [ + { + index: 'products', + userToken: 'test-user-id1', + queryID: '43b15df305339e827f0ac0bdc5ebcaa7', + eventName: 'product list viewed', + eventType: 'view', + objectIDs: ['ecommerce-sample-data-919', '9780439784542'], + }, + { + index: 'products', + userToken: 'test-user-id1', + filters: ['field1:hello', 'val1:val2'], + eventName: 'product clicked', + eventType: 'click', + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 1, + }, + { + jobId: 2, + }, + ], + batched: true, + statusCode: 200, + destination: { + ID: '1zzHtStW2ZPlullmz6L7DGnmk9V', + Name: 'algolia-dev', + DestinationDefinition: { + ID: '1zgVZhcj1Tij4qlKg7B1Jp16IrH', + Name: 'ALGOLIA', + DisplayName: 'Algolia', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'applicationId', 'eventTypeSettings'], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['apiKey', 'applicationId'], + supportedMessageTypes: ['track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'apiKey', + applicationId: 'appId', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'click', + }, + { + from: 'product list viewed', + to: 'view', + }, + ], + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + batched: false, + destination: { + Config: { + apiKey: 'dummyApiKey', + applicationId: 'O2YARRI15I', + eventTypeSettings: [ + { + from: 'product clicked', + to: 'cLick ', + }, + ], + }, + }, + error: 'Missing required value from "properties.index"', + metadata: [ + { + jobId: 3, + }, + ], + statTags: { + destType: 'ALGOLIA', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + }, + { + name: 'algolia', + description: 'Test 1', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + type: 'track', + event: 'Product List Viewed', + sentAt: '2023-06-19T22:22:34.928Z', + userId: 'anonymous', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + version: '2.35.0', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'https://m2-staging.ecmdi.com/supplies/air-distribution/grilles', + path: '/supplies/air-distribution/grilles/', + title: 'Grilles - Air Distribution - Supplies | East Coast Metal Distributors', + search: '', + tab_url: 'https://m2-staging.ecmdi.com/supplies/air-distribution/grilles', + referrer: 'https://m2-staging.ecmdi.com/', + initial_referrer: 'https://m2-staging.ecmdi.com/', + referring_domain: 'm2-staging.ecmdi.com', + initial_referring_domain: 'm2-staging.ecmdi.com', + }, + locale: 'en', + screen: { + width: 2560, + height: 1440, + density: 1, + innerWidth: 2514, + innerHeight: 567, + }, + traits: { + loggedIn: false, + customerId: 'anonymous', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '2.35.0', + }, + campaign: {}, + sessionId: 1687204412379, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0', + trackingPlanId: 'tp_2P3vmVzstHPms8hwcqHYwgBjIC7', + violationErrors: [ + { + meta: { + schemaPath: '#/properties/properties/properties/list_id/type', + instacePath: '/properties/list_id', + }, + type: 'Datatype-Mismatch', + message: 'must be string', + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/0', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/1', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/2', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/3', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/4', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/5', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/6', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/7', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/8', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/9', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/10', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/11', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/12', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/13', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/14', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/15', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/16', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/17', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'bu_product_num'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'erp_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'list_name'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'location_id'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'mpn'", + }, + { + meta: { + schemaPath: + '#/properties/properties/properties/products/items/additionalProperties', + instacePath: '/properties/products/18', + }, + type: 'Additional-Properties', + message: "must NOT have additional properties 'pim_id'", + }, + ], + trackingPlanVersion: 2, + }, + rudderId: '0d1f77df-5882-402a-a69f-d2dfe3175ebc', + timestamp: '2023-06-19T19:54:39.188Z', + properties: { + index: 'ecm_stg_product', + list_id: 1100000063100, + queryId: 'eafb6ef1081263626abce46671147dc0', + products: [ + { + mpn: '190RF14X20', + sku: '1367585787601', + name: '14" x 20" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168782', + pim_id: '1367585787601', + list_id: 1100000063100, + category: 'Grilles', + position: 1, + list_name: 'Grilles', + product_id: '49765', + location_id: 1, + bu_product_num: '49765', + }, + { + mpn: '190RF20X20', + sku: '1367585788656', + name: '20" x 20" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168790', + pim_id: '1367585788656', + list_id: 1100000063100, + category: 'Grilles', + position: 2, + list_name: 'Grilles', + product_id: '49773', + location_id: 1, + bu_product_num: '49773', + }, + { + mpn: '210VM10X04', + sku: '1367585790735', + name: '10" x 4" Bar Type Supply Sidewall/Ceiling Register - White', + brand: 'TRUaire', + price: 0, + erp_id: '300529', + pim_id: '1367585790735', + list_id: 1100000063100, + category: 'Grilles', + position: 3, + list_name: 'Grilles', + product_id: '300529A', + location_id: 1, + bu_product_num: '300529A', + }, + { + mpn: '17014X06', + sku: '1367585782036', + name: '14" x 6" Stamped Face Return Air Grille - White', + brand: 'TRUaire', + price: 0, + erp_id: '168752', + pim_id: '1367585782036', + list_id: 1100000063100, + category: 'Grilles', + position: 4, + list_name: 'Grilles', + product_id: '49741', + location_id: 1, + bu_product_num: '49741', + }, + { + mpn: '17014X04', + sku: '1367585782285', + name: '14" x 4" Stamped Face Return Air Grille - White', + brand: 'TRUaire', + price: 0, + erp_id: '168751', + pim_id: '1367585782285', + list_id: 1100000063100, + category: 'Grilles', + position: 5, + list_name: 'Grilles', + product_id: '49740', + location_id: 1, + bu_product_num: '49740', + }, + { + mpn: '190RF14X14', + sku: '1367585790111', + name: '14" x 14" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168781', + pim_id: '1367585790111', + list_id: 1100000063100, + category: 'Grilles', + position: 6, + list_name: 'Grilles', + product_id: '49764', + location_id: 1, + bu_product_num: '49764', + }, + { + mpn: '17014X10', + sku: '1367585783304', + name: '14" x 10" Stamped Face Return Air Grille - White', + brand: 'TRUaire', + price: 0, + erp_id: '168755', + pim_id: '1367585783304', + list_id: 1100000063100, + category: 'Grilles', + position: 7, + list_name: 'Grilles', + product_id: '49743', + location_id: 1, + bu_product_num: '49743', + }, + { + mpn: '210VM12X04', + sku: '1367585791531', + name: '12" x 4" Bar Type Supply Sidewall/Ceiling Register - White', + brand: 'TRUaire', + price: 0, + erp_id: '240862', + pim_id: '1367585791531', + list_id: 1100000063100, + category: 'Grilles', + position: 8, + list_name: 'Grilles', + product_id: '49934', + location_id: 1, + bu_product_num: '49934', + }, + { + mpn: '190RF20X25', + sku: '1367585788307', + name: '20" x 25" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168791', + pim_id: '1367585788307', + list_id: 1100000063100, + category: 'Grilles', + position: 9, + list_name: 'Grilles', + product_id: '49774', + location_id: 1, + bu_product_num: '49774', + }, + { + mpn: '190RF20X14', + sku: '1367585789457', + name: '20" x 14" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168788', + pim_id: '1367585789457', + list_id: 1100000063100, + category: 'Grilles', + position: 10, + list_name: 'Grilles', + product_id: '49771', + location_id: 1, + bu_product_num: '49771', + }, + { + mpn: '401M10X04', + sku: '1367585800344', + name: '10" x 4" Stamped Curved Blade Supply Sidewall/Ceiling Register', + brand: 'TRUaire', + price: 0, + erp_id: '300734', + pim_id: '1367585800344', + list_id: 1100000063100, + category: 'Grilles', + position: 11, + list_name: 'Grilles', + product_id: '300734A', + location_id: 1, + bu_product_num: '300734A', + }, + { + mpn: '190RF14X25', + sku: '1367585787467', + name: '14" x 25" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168783', + pim_id: '1367585787467', + list_id: 1100000063100, + category: 'Grilles', + position: 12, + list_name: 'Grilles', + product_id: '49766', + location_id: 1, + bu_product_num: '49766', + }, + { + mpn: '17020X10', + sku: '1367585783058', + name: '20" x 10" Stamped Face Return Air Grille - White', + brand: 'TRUaire', + price: 0, + erp_id: '219506', + pim_id: '1367585783058', + list_id: 1100000063100, + category: 'Grilles', + position: 13, + list_name: 'Grilles', + product_id: '49881', + location_id: 1, + bu_product_num: '49881', + }, + { + mpn: '17020X08', + sku: '1367585783494', + name: '20" x 8" Stamped Face Return Air Grille - White', + brand: 'TRUaire', + price: 0, + erp_id: '210374', + pim_id: '1367585783494', + list_id: 1100000063100, + category: 'Grilles', + position: 14, + list_name: 'Grilles', + product_id: '210374A', + location_id: 1, + bu_product_num: '210374A', + }, + { + mpn: '190RF12X12', + sku: '1367585787042', + name: '12" x 12" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168777', + pim_id: '1367585787042', + list_id: 1100000063100, + category: 'Grilles', + position: 15, + list_name: 'Grilles', + product_id: '49761', + location_id: 1, + bu_product_num: '49761', + }, + { + mpn: '210VM14X04', + sku: '1367585793228', + name: '14" x 4" Bar Type Supply Sidewall/Ceiling Register - White', + brand: 'TRUaire', + price: 0, + erp_id: '232771', + pim_id: '1367585793228', + list_id: 1100000063100, + category: 'Grilles', + position: 16, + list_name: 'Grilles', + product_id: '49907', + location_id: 1, + bu_product_num: '49907', + }, + { + mpn: '17014X144', + sku: '1367585783124', + name: '14" x 14" Stamped Face Return Air Grille - White - 4 Holes', + brand: 'TRUaire', + price: 0, + erp_id: '168757', + pim_id: '1367585783124', + list_id: 1100000063100, + category: 'Grilles', + position: 17, + list_name: 'Grilles', + product_id: '49744', + location_id: 1, + bu_product_num: '49744', + }, + { + mpn: '190RF20X30', + sku: '1367585788366', + name: '20" x 30" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168792', + pim_id: '1367585788366', + list_id: 1100000063100, + category: 'Grilles', + position: 18, + list_name: 'Grilles', + product_id: '49775', + location_id: 1, + bu_product_num: '49775', + }, + { + mpn: '190RF16X25', + sku: '1367585788996', + name: '16" x 25" Stamped Face Return Air Filter Grille with Removable Face - White', + brand: 'TRUaire', + price: 0, + erp_id: '168786', + pim_id: '1367585788996', + list_id: 1100000063100, + category: 'Grilles', + position: 19, + list_name: 'Grilles', + product_id: '49769', + location_id: 1, + bu_product_num: '49769', + }, + ], + eventName: 'productListView', + eventType: 'view', + list_name: 'Grilles', + objectIds: [ + '1367585787601', + '1367585788656', + '1367585790735', + '1367585782036', + '1367585782285', + '1367585790111', + '1367585783304', + '1367585791531', + '1367585788307', + '1367585789457', + '1367585800344', + '1367585787467', + '1367585783058', + '1367585783494', + '1367585787042', + '1367585793228', + '1367585783124', + '1367585788366', + '1367585788996', + ], + positions: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], + userToken: 'anonymous', + }, + receivedAt: '2023-06-19T22:22:32.431Z', + request_ip: '104.205.211.60', + anonymousId: '7b701174-5998-480e-a4df-b322d0ec9d1c', + integrations: { + All: true, + }, + originalTimestamp: '2023-06-19T19:54:41.686Z', + }, + destination: { + secretConfig: {}, + Config: { + apiKey: 'apiKey', + applicationId: 'appId', + eventTypeSettings: [ + { + from: 'productClicked', + to: 'click', + }, + { + from: 'product list filtered', + to: 'click', + }, + { + from: 'Product List Viewed', + to: 'view', + }, + { + from: 'Order Completed', + to: 'conversion', + }, + { + from: 'Product Added', + to: 'click', + }, + ], + oneTrustCookieCategories: [], + eventDelivery: false, + eventDeliveryTS: 1687213909459, + }, + liveEventsConfig: { + eventDelivery: false, + eventDeliveryTS: 1687213909459, + }, + id: 'destId', + workspaceId: 'wspId', + DestinationDefinition: { + Config: { + destConfig: { + defaultConfig: [ + 'apiKey', + 'applicationId', + 'eventTypeSettings', + 'oneTrustCookieCategories', + ], + }, + secretKeys: ['apiKey', 'applicationId'], + excludeKeys: [], + includeKeys: ['oneTrustCookieCategories'], + transformAt: 'router', + cdkV2Enabled: true, + transformAtV1: 'router', + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + 'warehouse', + ], + supportedMessageTypes: ['track'], + saveDestinationResponse: true, + }, + configSchema: {}, + responseRules: {}, + options: null, + id: '1xrHTzX8VrnvL6FTGOrBBgT687S', + name: 'ALGOLIA', + displayName: 'Algolia', + category: null, + createdAt: '2021-09-08T13:04:58.041Z', + updatedAt: '2023-06-13T13:18:08.335Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + name: 'my_algolia', + enabled: true, + deleted: false, + createdAt: '2023-05-26T14:18:01.205Z', + updatedAt: '2023-06-19T22:31:49.460Z', + revisionId: 'revisionId1', + secretVersion: 7, + }, + metadata: { + sourceId: 'srcId', + workspaceId: 'wspId', + destinationId: 'destId', + jobId: 12, + }, + }, + ], + destType: 'algolia', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batched: true, + batchedRequest: { + body: { + FORM: {}, + JSON: { + events: [ + { + eventName: 'product list viewed', + eventType: 'view', + index: 'ecm_stg_product', + objectIDs: [ + '1367585787601', + '1367585788656', + '1367585790735', + '1367585782036', + '1367585782285', + '1367585790111', + '1367585783304', + '1367585791531', + '1367585788307', + '1367585789457', + '1367585800344', + '1367585787467', + '1367585783058', + '1367585783494', + '1367585787042', + '1367585793228', + '1367585783124', + '1367585788366', + '1367585788996', + ], + queryID: 'eafb6ef1081263626abce46671147dc0', + userToken: 'anonymous', + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + }, + endpoint: 'https://insights.algolia.io/1/events', + files: {}, + headers: { + 'X-Algolia-API-Key': 'apiKey', + 'X-Algolia-Application-Id': 'appId', + }, + method: 'POST', + params: {}, + type: 'REST', + version: '1', + }, + destination: { + Config: { + apiKey: 'apiKey', + applicationId: 'appId', + eventDelivery: false, + eventDeliveryTS: 1687213909459, + eventTypeSettings: [ + { + from: 'productClicked', + to: 'click', + }, + { + from: 'product list filtered', + to: 'click', + }, + { + from: 'Product List Viewed', + to: 'view', + }, + { + from: 'Order Completed', + to: 'conversion', + }, + { + from: 'Product Added', + to: 'click', + }, + ], + oneTrustCookieCategories: [], + }, + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + destConfig: { + defaultConfig: [ + 'apiKey', + 'applicationId', + 'eventTypeSettings', + 'oneTrustCookieCategories', + ], + }, + excludeKeys: [], + includeKeys: ['oneTrustCookieCategories'], + saveDestinationResponse: true, + secretKeys: ['apiKey', 'applicationId'], + supportedMessageTypes: ['track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + 'warehouse', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + category: null, + configSchema: {}, + createdAt: '2021-09-08T13:04:58.041Z', + displayName: 'Algolia', + id: '1xrHTzX8VrnvL6FTGOrBBgT687S', + name: 'ALGOLIA', + options: null, + responseRules: {}, + updatedAt: '2023-06-13T13:18:08.335Z', + }, + createdAt: '2023-05-26T14:18:01.205Z', + deleted: false, + enabled: true, + id: 'destId', + isConnectionEnabled: true, + isProcessorEnabled: true, + liveEventsConfig: { + eventDelivery: false, + eventDeliveryTS: 1687213909459, + }, + name: 'my_algolia', + revisionId: 'revisionId1', + secretConfig: {}, + secretVersion: 7, + transformations: [], + updatedAt: '2023-06-19T22:31:49.460Z', + workspaceId: 'wspId', + }, + metadata: [ + { + sourceId: 'srcId', + workspaceId: 'wspId', + destinationId: 'destId', + jobId: 12, + }, + ], + statusCode: 200, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/appcues/processor/data.ts b/test/integrations/destinations/appcues/processor/data.ts new file mode 100644 index 0000000000..ab47e5c857 --- /dev/null +++ b/test/integrations/destinations/appcues/processor/data.ts @@ -0,0 +1,1387 @@ +export const data = [ + { + name: 'appcues', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '33787665-4168-4acc-8df7-17ba79325332', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '6a5f38c0-4e75-4268-a066-2b73fbcad01f', + originalTimestamp: '2021-01-04T08:25:04.780Z', + receivedAt: '2021-01-04T13:55:04.799+05:30', + request_ip: '[::1]', + rudderId: '79881a62-980a-4d76-89ca-7099440f8c13', + sentAt: '2021-01-04T08:25:04.781Z', + timestamp: '2021-01-04T13:55:04.798+05:30', + type: 'identify', + userId: 'onlyUserId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + request_id: '6a5f38c0-4e75-4268-a066-2b73fbcad01f', + profile_update: {}, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + userId: '', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/onlyUserId/activity', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '33787665-4168-4acc-8df7-17ba79325332', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: { + 'first name': 'John', + 'last name': 'Abraham', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '57494c6a-3c62-4b30-83aa-6e821d37ac75', + originalTimestamp: '2021-01-04T08:25:04.786Z', + receivedAt: '2021-01-04T13:55:04.799+05:30', + request_ip: '[::1]', + rudderId: 'ed2ed08a-3cd9-4b2c-9b04-7e3d3501fab7', + sentAt: '2021-01-04T08:25:04.787Z', + timestamp: '2021-01-04T13:55:04.798+05:30', + type: 'identify', + userId: 'userIdWithProperties', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + request_id: '57494c6a-3c62-4b30-83aa-6e821d37ac75', + profile_update: { + 'last name': 'Abraham', + 'first name': 'John', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + userId: '', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: + 'https://api.appcues.com/v1/accounts/86086/users/userIdWithProperties/activity', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '59f2911c-f050-497d-9f80-e1696a3c56aa', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + event: 'eventWithoutProperties', + integrations: { + All: true, + }, + messageId: '045f5107-6036-4557-ae17-6ddf5ee57eb6', + originalTimestamp: '2021-01-04T08:33:07.004Z', + properties: {}, + receivedAt: '2021-01-04T14:03:07.009+05:30', + request_ip: '[::1]', + rudderId: '9b6b8204-292c-493b-9c08-2c3ec0ade688', + sentAt: '2021-01-04T08:33:07.005Z', + timestamp: '2021-01-04T14:03:07.008+05:30', + type: 'track', + userId: 'sampleId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + events: [ + { + name: 'eventWithoutProperties', + timestamp: 1609749187, + attributes: {}, + }, + ], + request_id: '045f5107-6036-4557-ae17-6ddf5ee57eb6', + }, + }, + type: 'REST', + files: {}, + method: 'POST', + userId: '', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '59f2911c-f050-497d-9f80-e1696a3c56aa', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + event: 'eventWithProperties', + integrations: { + All: true, + }, + messageId: '4b99c45d-8591-473c-b79d-abd466f6f4d5', + originalTimestamp: '2021-01-04T08:33:07.006Z', + properties: { + category: 'blah', + }, + receivedAt: '2021-01-04T14:03:07.026+05:30', + request_ip: '[::1]', + rudderId: '9b6b8204-292c-493b-9c08-2c3ec0ade688', + sentAt: '2021-01-04T08:33:07.006Z', + timestamp: '2021-01-04T14:03:07.026+05:30', + type: 'track', + userId: 'sampleId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + events: [ + { + name: 'eventWithProperties', + timestamp: 1609749187, + attributes: { + category: 'blah', + }, + }, + ], + request_id: '4b99c45d-8591-473c-b79d-abd466f6f4d5', + }, + }, + type: 'REST', + files: {}, + method: 'POST', + userId: '', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'a4a6304a-df41-4ca9-b2b7-4b0009dfddaa', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '75a9e08b-955a-4dc7-8a39-3f6fba9d7497', + originalTimestamp: '2021-01-04T08:43:05.783Z', + properties: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + receivedAt: '2021-01-04T14:13:05.800+05:30', + request_ip: '[::1]', + rudderId: '2d03081c-8053-4cce-9abf-bb024f747900', + sentAt: '2021-01-04T08:43:05.783Z', + timestamp: '2021-01-04T14:13:05.799+05:30', + type: 'page', + userId: 'sampleId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + events: [ + { + name: 'Visited a Page', + context: { + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + timestamp: 1609749785, + attributes: { + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + path: '/rudder-sdk-js/tests/html/script-test.html', + _identity: { + userId: 'sampleId', + }, + }, + }, + ], + request_id: '75a9e08b-955a-4dc7-8a39-3f6fba9d7497', + profile_update: { + _appcuesId: '86086', + _updatedAt: '2021-01-04T14:13:05.799+05:30', + _userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + _currentPageUrl: + 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + _lastBrowserLanguage: 'en-GB', + userId: 'sampleId', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + userId: '', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'a4a6304a-df41-4ca9-b2b7-4b0009dfddaa', + category: 'page category', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/testing', + referrer: '', + search: '', + title: '', + url: 'https://pagecall.com/testing', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '397fdf96-daee-46c8-ac38-5d717cd8cabd', + name: 'page name', + originalTimestamp: '2021-01-04T08:43:05.784Z', + properties: { + category: 'page category', + name: 'page name', + path: '/testing', + referrer: '', + search: '', + title: '', + url: 'https://pagecall.com/testing', + }, + receivedAt: '2021-01-04T14:13:05.801+05:30', + request_ip: '[::1]', + rudderId: '2d03081c-8053-4cce-9abf-bb024f747900', + sentAt: '2021-01-04T08:43:05.784Z', + timestamp: '2021-01-04T14:13:05.801+05:30', + type: 'page', + userId: 'sampleId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + events: [ + { + name: 'Visited a Page', + context: { + url: 'https://pagecall.com/testing', + }, + timestamp: 1609749785, + attributes: { + url: 'https://pagecall.com/testing', + name: 'page name', + path: '/testing', + category: 'page category', + _identity: { + userId: 'sampleId', + }, + }, + }, + ], + request_id: '397fdf96-daee-46c8-ac38-5d717cd8cabd', + profile_update: { + _appcuesId: '86086', + _updatedAt: '2021-01-04T14:13:05.801+05:30', + _userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + _currentPageUrl: 'https://pagecall.com/testing', + _lastBrowserLanguage: 'en-GB', + userId: 'sampleId', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + userId: '', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'a4a6304a-df41-4ca9-b2b7-4b0009dfddaa', + category: 'page category', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/testing', + referrer: '', + search: '', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '397fdf96-daee-46c8-ac38-5d717cd8cabd', + name: 'page name', + originalTimestamp: '2021-01-04T08:43:05.784Z', + properties: { + category: 'page category', + name: 'page name', + path: '/testing', + referrer: '', + search: '', + title: 'properties title', + url: 'https://pagecall.com/properties_url', + }, + receivedAt: '2021-01-04T14:13:05.801+05:30', + request_ip: '[::1]', + rudderId: '2d03081c-8053-4cce-9abf-bb024f747900', + sentAt: '2021-01-04T08:43:05.784Z', + timestamp: '2021-01-04T14:13:05.801+05:30', + type: 'page', + userId: 'sampleId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + headers: { + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + request_id: '397fdf96-daee-46c8-ac38-5d717cd8cabd', + profile_update: { + userId: 'sampleId', + _lastBrowserLanguage: 'en-GB', + _updatedAt: '2021-01-04T14:13:05.801+05:30', + _userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + _currentPageTitle: 'properties title', + _currentPageUrl: 'https://pagecall.com/properties_url', + _appcuesId: '86086', + }, + events: [ + { + timestamp: 1609749785, + attributes: { + category: 'page category', + name: 'page name', + path: '/testing', + title: 'properties title', + url: 'https://pagecall.com/properties_url', + _identity: { + userId: 'sampleId', + }, + }, + name: 'Visited a Page', + context: { + url: 'https://pagecall.com/properties_url', + }, + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'a4a6304a-df41-4ca9-b2b7-4b0009dfddaa', + category: 'page category', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/testing', + referrer: '', + search: '', + title: 'context title', + url: 'https://pagecall.com/context_url', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '397fdf96-daee-46c8-ac38-5d717cd8cabd', + name: 'page name', + originalTimestamp: '2021-01-04T08:43:05.784Z', + properties: { + category: 'page category', + name: 'page name', + path: '/testing', + referrer: '', + search: '', + }, + receivedAt: '2021-01-04T14:13:05.801+05:30', + request_ip: '[::1]', + rudderId: '2d03081c-8053-4cce-9abf-bb024f747900', + sentAt: '2021-01-04T08:43:05.784Z', + timestamp: '2021-01-04T14:13:05.801+05:30', + type: 'page', + userId: 'sampleId', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + userId: '', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + headers: { + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + request_id: '397fdf96-daee-46c8-ac38-5d717cd8cabd', + profile_update: { + userId: 'sampleId', + _lastBrowserLanguage: 'en-GB', + _updatedAt: '2021-01-04T14:13:05.801+05:30', + _userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + _currentPageTitle: 'context title', + _currentPageUrl: 'https://pagecall.com/context_url', + _appcuesId: '86086', + }, + events: [ + { + timestamp: 1609749785, + attributes: { + category: 'page category', + name: 'page name', + path: '/testing', + _identity: { + userId: 'sampleId', + }, + }, + name: 'Visited a Page', + context: { + url: 'https://pagecall.com/context_url', + }, + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AppcuesIntegration', + namespace: 'com.Appcues', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.1-beta.1', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '8.1.0', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5094f5704b9cf2b3', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { + All: true, + }, + messageId: 'id1', + properties: { + name: 'MainActivity', + automatic: true, + }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + userId: 'sampleId', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + userId: '', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/sampleId/activity', + headers: { + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + request_id: 'id1', + events: [ + { + name: 'Viewed a Screen', + timestamp: 1584003903, + attributes: { + name: 'MainActivity', + automatic: true, + }, + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AppcuesIntegration', + namespace: 'com.Appcues', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.1-beta.1', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '8.1.0', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5094f5704b9cf2b3', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { + All: true, + }, + messageId: 'id1', + properties: { + name: 'MainActivity', + automatic: true, + }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'User id is absent. Aborting event as userId is mandatory for Appcues', + statTags: { + destType: 'APPCUES', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AppcuesIntegration', + namespace: 'com.Appcues', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.1-beta.1', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '8.1.0', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5094f5704b9cf2b3', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { + All: true, + }, + messageId: 'id1', + properties: { + name: 'MainActivity', + automatic: true, + }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: '', + userId: 'sampleId', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message Type is not present. Aborting message.', + statTags: { + destType: 'APPCUES', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'appcues', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.5', + }, + traits: { + name: 'Shehan Study', + category: 'SampleIdentify', + email: 'test@rudderstack.com', + plan: 'Open source', + logins: 5, + createdAt: 1599264000, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.5', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 0.8999999761581421, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + test: 'other value', + }, + page: { + path: '/html/sajal.html', + referrer: '', + search: + '?utm_source=google&utm_medium=medium&utm_term=keyword&utm_content=some%20content&utm_campaign=some%20campaign&utm_test=other%20value', + title: '', + url: 'http://localhost:9116/html/sajal.html?utm_source=google&utm_medium=medium&utm_term=keyword&utm_content=some%20content&utm_campaign=some%20campaign&utm_test=other%20value', + }, + }, + type: 'group', + messageId: 'e5034df0-a404-47b4-a463-76df99934fea', + originalTimestamp: '2020-10-20T07:54:58.983Z', + anonymousId: 'my-anonymous-id-new', + userId: 'sampleusrRudder3', + integrations: { + All: true, + }, + groupId: 'Sample_groupId23', + traits: { + KEY_3: { + CHILD_KEY_92: 'value_95', + CHILD_KEY_102: 'value_103', + }, + KEY_2: { + CHILD_KEY_92: 'value_95', + CHILD_KEY_102: 'value_103', + }, + name_trait: 'Company', + value_trait: 'Comapny-ABC', + }, + sentAt: '2020-10-20T07:54:58.983Z', + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message type is not supported', + statTags: { + destType: 'APPCUES', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/appcues/router/data.ts b/test/integrations/destinations/appcues/router/data.ts new file mode 100644 index 0000000000..ddc8dddf57 --- /dev/null +++ b/test/integrations/destinations/appcues/router/data.ts @@ -0,0 +1,221 @@ +export const data = [ + { + name: 'appcues', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + anonymousId: '33787665-4168-4acc-8df7-17ba79325332', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '6a5f38c0-4e75-4268-a066-2b73fbcad01f', + originalTimestamp: '2021-01-04T08:25:04.780Z', + receivedAt: '2021-01-04T13:55:04.799+05:30', + request_ip: '[::1]', + rudderId: '79881a62-980a-4d76-89ca-7099440f8c13', + sentAt: '2021-01-04T08:25:04.781Z', + timestamp: '2021-01-04T13:55:04.798+05:30', + type: 'identify', + userId: 'onlyUserId', + }, + metadata: { + jobId: 1, + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + { + message: { + anonymousId: '33787665-4168-4acc-8df7-17ba79325332', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.9', + }, + campaign: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.9', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/rudder-sdk-js/tests/html/script-test.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost:4321/rudder-sdk-js/tests/html/script-test.html', + }, + screen: { + density: 2, + }, + traits: { + 'first name': 'John', + 'last name': 'Abraham', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '57494c6a-3c62-4b30-83aa-6e821d37ac75', + originalTimestamp: '2021-01-04T08:25:04.786Z', + receivedAt: '2021-01-04T13:55:04.799+05:30', + request_ip: '[::1]', + rudderId: 'ed2ed08a-3cd9-4b2c-9b04-7e3d3501fab7', + sentAt: '2021-01-04T08:25:04.787Z', + timestamp: '2021-01-04T13:55:04.798+05:30', + type: 'identify', + userId: 'userIdWithProperties', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + destType: 'appcues', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + request_id: '6a5f38c0-4e75-4268-a066-2b73fbcad01f', + profile_update: {}, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.appcues.com/v1/accounts/86086/users/onlyUserId/activity', + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + { + batchedRequest: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + request_id: '57494c6a-3c62-4b30-83aa-6e821d37ac75', + profile_update: { + 'last name': 'Abraham', + 'first name': 'John', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: + 'https://api.appcues.com/v1/accounts/86086/users/userIdWithProperties/activity', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accountId: '86086', + useNativeSDK: false, + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/attentive_tag/processor/data.ts b/test/integrations/destinations/attentive_tag/processor/data.ts new file mode 100644 index 0000000000..42e6492d10 --- /dev/null +++ b/test/integrations/destinations/attentive_tag/processor/data.ts @@ -0,0 +1,1682 @@ +export const mockFns = (_) => { + // @ts-ignore + jest.useFakeTimers().setSystemTime(new Date('2023-10-14')); +}; + +export const data = [ + { + name: 'attentive_tag', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '4eb021e9-a2af-4926-ae82-fe996d12f3c5', + channel: 'web', + context: { + locale: 'en-GB', + traits: { + email: 'a@gmail.com', + phone: '+16405273911', + customIdentifiers: [ + { + name: 'string', + value: 'string', + }, + ], + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'e108eb05-f6cd-4624-ba8c-568f2e2b3f92', + receivedAt: '2023-10-14T09:03:17.562Z', + type: 'identify', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '241654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.attentivemobile.com/v1/subscriptions', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: { + phone: '+16405273911', + email: 'a@gmail.com', + }, + signUpSourceId: '241654', + externalIdentifiers: { + customIdentifiers: [ + { + name: 'string', + value: 'string', + }, + ], + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '224', + }, + { + type: 'klaviyoId', + id: '132', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + 'product,id': 'r494', + quantity: '34', + variant: 'f', + }, + event: 'Order Shipped', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2023-10-14T09:03:17.562Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive_Tag]: Events must be sent within 12 hours of their occurrence.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '4eb021e9-a2af-4926-ae82-fe996d12f3c5', + channel: 'web', + context: { + locale: 'en-GB', + os: { + name: '', + version: '', + }, + traits: { + company: { + id: 'abc123', + }, + createdAt: 'Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)', + phone: '+16465453911', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36', + }, + integrations: { + All: true, + attentive_tag: { + signUpSourceId: '241654', + identifyOperation: 'unsubscribe', + }, + }, + messageId: 'e108eb05-f6cd-4624-ba8c-568f2e2b3f92', + receivedAt: '2020-10-16T13:56:14.945+05:30', + type: 'identify', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '241654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.attentivemobile.com/v1/subscriptions/unsubscribe', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: { + phone: '+16465453911', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Order Completed', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive_Tag]: Events must be sent within 12 hours of their occurrence.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: 1, + }, + { + type: 'shopifyId', + id: 1, + }, + { + type: 'klaviyoId', + id: 1, + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive Tag] :: Event name is not present', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Product List Viewed', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive_Tag]: Events must be sent within 12 hours of their occurrence.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Product Viewed', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive_Tag]: Events must be sent within 12 hours of their occurrence.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '224', + }, + { + type: 'klaviyoId', + id: '132', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + }, + event: 'Order Shipped', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive_Tag]: Events must be sent within 12 hours of their occurrence.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: 1, + }, + { + type: 'shopifyId', + id: 1, + }, + { + type: 'klaviyoId', + id: 1, + }, + ], + }, + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Order Completed', + originalTimestamp: '2023-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2023-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message Type is not present. Aborting message.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '4eb021e9-a2af-4926-ae82-fe996d12f3c5', + channel: 'web', + context: { + locale: 'en-GB', + os: { + name: '', + version: '', + }, + traits: { + company: { + id: 'abc123', + }, + createdAt: 'Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)', + email: 'test0@gmail.com', + phone: '+16465453911', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36', + }, + integrations: { + All: true, + attentive_tag: { + signUpSourceId: '241654', + identifyOperation: 'subscribe', + }, + }, + messageId: 'e108eb05-f6cd-4624-ba8c-568f2e2b3f92', + receivedAt: '2023-10-14T13:56:14.945+05:30', + type: 'identify', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '241654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.attentivemobile.com/v1/subscriptions', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: { + phone: '+16465453911', + email: 'test0@gmail.com', + }, + signUpSourceId: '241654', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Product Viewed', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: '[Attentive_Tag]: Events must be sent within 12 hours of their occurrence.', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + quantity: '34', + products: [ + { + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Product Viewed', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from "product_id"', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Product Viewed', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Missing required value from "variant"', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + phone: '+16465053911', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + externalId: [ + { + type: 'clientUserId', + id: '144', + }, + { + type: 'shopifyId', + id: '143', + }, + { + type: 'klaviyoId', + id: '142', + }, + ], + }, + type: 'track', + properties: { + price: '12', + 'curre,ncy': 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Order Shipped', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[Attentive Tag]:The event name contains characters which is not allowed', + statTags: { + destType: 'ATTENTIVE_TAG', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '4eb021e9-a2af-4926-ae82-fe996d12f3c5', + channel: 'web', + context: { + locale: 'en-GB', + os: { + name: '', + version: '', + }, + traits: { + company: { + id: 'abc123', + }, + createdAt: 'Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)', + email: 'test0@gmail.com', + phone: '+16465453911', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36', + }, + integrations: { + All: true, + attentive_tag: { + signUpSourceId: '241654', + }, + }, + messageId: 'e108eb05-f6cd-4624-ba8c-568f2e2b3f92', + receivedAt: '2020-10-16T13:56:14.945+05:30', + type: 'identify', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '241654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.attentivemobile.com/v1/subscriptions', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: { + phone: '+16465453911', + email: 'test0@gmail.com', + }, + signUpSourceId: '241654', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'attentive_tag', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + properties: { + price: '12', + currency: 'USD', + product_id: 'r494', + quantity: '34', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + name: 'MOBILE', + variant: 'green', + price: '19', + quantity: '2', + currency: 'USD', + }, + ], + }, + event: 'Product Viewed', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '240654', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + userId: '', + endpoint: 'https://api.attentivemobile.com/v1/events/ecommerce/product-view', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: {}, + items: [ + { + productId: '507f1f77bcf86cd799439011', + name: 'MOBILE', + productVariantId: 'green', + quantity: '2', + price: [ + { + value: 19, + currency: 'USD', + }, + ], + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/attentive_tag/router/data.ts b/test/integrations/destinations/attentive_tag/router/data.ts new file mode 100644 index 0000000000..c52a6ed2e3 --- /dev/null +++ b/test/integrations/destinations/attentive_tag/router/data.ts @@ -0,0 +1,122 @@ +export const data = [ + { + name: 'attentive_tag', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '241654', + }, + }, + metadata: { + jobId: 1, + }, + message: { + anonymousId: '4eb021e9-a2af-4926-ae82-fe996d12f3c5', + channel: 'web', + context: { + locale: 'en-GB', + os: { + name: '', + version: '', + }, + traits: { + company: { + id: 'abc123', + }, + createdAt: 'Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)', + email: 'test0@gmail.com', + phone: '+16465453911', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36', + externalId: [ + { + type: 'clientUsrId', + id: 1, + }, + { + type: 'shopifyId', + id: 1, + }, + { + type: 'klaviyoId', + id: 1, + }, + ], + }, + integrations: { + All: true, + attentive_tag: { + signUpSourceId: '241654', + identifyOperation: 'unsubscribe', + }, + }, + messageId: 'e108eb05-f6cd-4624-ba8c-568f2e2b3f92', + receivedAt: '2020-10-16T13:56:14.945+05:30', + type: 'identify', + }, + }, + ], + destType: 'attentive_tag', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.attentivemobile.com/v1/subscriptions/unsubscribe', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: { + phone: '+16465453911', + email: 'test0@gmail.com', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: 'dummyApiKey', + signUpSourceId: '241654', + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/autopilot/processor/data.ts b/test/integrations/destinations/autopilot/processor/data.ts new file mode 100644 index 0000000000..0c0368a0df --- /dev/null +++ b/test/integrations/destinations/autopilot/processor/data.ts @@ -0,0 +1,1167 @@ +export const data = [ + { + name: 'autopilot', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'fad9b3fb-5778-4db3-9fb6-7168b554191f', + originalTimestamp: '2020-04-17T14:42:44.722Z', + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53513', + sentAt: '2020-04-17T14:42:44.722Z', + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + timestamp: '2020-04-17T20:12:44.758+05:30', + type: 'identify', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.autopilothq.com/v1/contact', + headers: { + Accept: 'application/json', + autopilotapikey: 'dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + contact: { + Email: 'testmp@rudderstack.com', + FirstName: 'Test Kafka', + custom: { + age: 23, + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + type: 'track', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://api2.autopilothq.com/v1/trigger/00XX/contact/testmp@rudderstack.com', + headers: { + Accept: 'application/json', + autopilotapikey: 'dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + property: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + type: 'page', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + type: 'track', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + type: 'group', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + email: 'abc@rudderstack.com', + firstname: 'Anuraj', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + integrations: { + All: true, + }, + originalTimestamp: '2020-04-17T14:42:44.722Z', + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53513', + sentAt: '2020-04-17T14:42:44.722Z', + timestamp: '2020-04-17T20:12:44.758+05:30', + type: 'identify', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.autopilothq.com/v1/contact', + headers: { + Accept: 'application/json', + autopilotapikey: 'dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + contact: { + Email: 'abc@rudderstack.com', + FirstName: 'Anuraj', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + email: 'abc@rudderstack.com', + firstname: 'Anuraj', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + integrations: { + All: true, + }, + originalTimestamp: '2020-04-17T14:42:44.722Z', + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53513', + sentAt: '2020-04-17T14:42:44.722Z', + timestamp: '2020-04-17T20:12:44.758+05:30', + type: 'group', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'autopilot', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + cdkEnabled: true, + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + email: 'abc@rudderstack.com', + firstname: 'Anuraj', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + integrations: { + All: true, + }, + originalTimestamp: '2020-04-17T14:42:44.722Z', + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53513', + sentAt: '2020-04-17T14:42:44.722Z', + timestamp: '2020-04-17T20:12:44.758+05:30', + type: 'Tals', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 500, + error: "Cannot read properties of undefined (reading 'destinationId')", + statTags: { + errorCategory: 'transformation', + destType: 'AUTOPILOT', + module: 'destination', + implementation: 'cdkV1', + feature: 'processor', + }, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/autopilot/router/data.ts b/test/integrations/destinations/autopilot/router/data.ts new file mode 100644 index 0000000000..cbfe0c4207 --- /dev/null +++ b/test/integrations/destinations/autopilot/router/data.ts @@ -0,0 +1,317 @@ +export const data = [ + { + name: 'autopilot', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + metadata: { + jobId: 1, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'fad9b3fb-5778-4db3-9fb6-7168b554191f', + originalTimestamp: '2020-04-17T14:42:44.722Z', + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53513', + sentAt: '2020-04-17T14:42:44.722Z', + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + timestamp: '2020-04-17T20:12:44.758+05:30', + type: 'identify', + userId: 'user12345', + }, + }, + { + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'testmp@rudderstack.com', + firstname: 'Test Kafka', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: '37b75e61-9bd2-4fb8-91ed-e3a064905f3a', + originalTimestamp: '2020-04-17T14:42:44.724Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-04-17T20:12:44.758+05:30', + request_ip: '[::1]:53512', + sentAt: '2020-04-17T14:42:44.725Z', + timestamp: '2020-04-17T20:12:44.757+05:30', + type: 'track', + userId: 'user12345', + }, + }, + ], + destType: 'autopilot', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.autopilothq.com/v1/contact', + headers: { + autopilotapikey: 'dummyApiKey', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + contact: { + Email: 'testmp@rudderstack.com', + FirstName: 'Test Kafka', + custom: { + age: 23, + }, + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://api2.autopilothq.com/v1/trigger/00XX/contact/testmp@rudderstack.com', + headers: { + autopilotapikey: 'dummyApiKey', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + property: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + ID: '1afjtc6chkhdeKsXYrNFOzR5D9v', + Name: 'Autopilot', + DestinationDefinition: { + ID: '1afjX4MlAucK57Q0ctTVlD27Tvo', + Name: 'AUTOPILOT', + DisplayName: 'Autopilot', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + apiKey: 'dummyApiKey', + customMappings: [ + { + from: '0001', + to: 'Signup', + }, + ], + triggerId: '00XX', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/azure_event_hub/processor/data.ts b/test/integrations/destinations/azure_event_hub/processor/data.ts new file mode 100644 index 0000000000..2f7acf742e --- /dev/null +++ b/test/integrations/destinations/azure_event_hub/processor/data.ts @@ -0,0 +1,835 @@ +export const data = [ + { + name: 'azure_event_hub', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'Purchase', + integrations: { + All: true, + }, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + originalTimestamp: '2020-05-21T10:23:15.984Z', + properties: { + currency: 'USD', + revenue: 100, + }, + receivedAt: '2020-05-21T15:53:16.013+05:30', + request_ip: '[::1]:59371', + sentAt: '2020-05-21T10:23:15.985Z', + timestamp: '2020-05-21T15:53:16.012+05:30', + type: 'track', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 46, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'Purchase', + integrations: { + All: true, + }, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + originalTimestamp: '2020-05-21T10:23:15.984Z', + properties: { + currency: 'USD', + revenue: 100, + }, + receivedAt: '2020-05-21T15:53:16.013+05:30', + request_ip: '[::1]:59371', + sentAt: '2020-05-21T10:23:15.985Z', + timestamp: '2020-05-21T15:53:16.012+05:30', + type: 'track', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 46, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'azure_event_hub', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + originalTimestamp: '2020-05-21T10:23:15.975Z', + properties: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:58616', + sentAt: '2020-05-21T10:23:15.975Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'page', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 47, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + originalTimestamp: '2020-05-21T10:23:15.975Z', + properties: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:58616', + sentAt: '2020-05-21T10:23:15.975Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'page', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 47, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'azure_event_hub', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + originalTimestamp: '2020-05-21T10:23:15.979Z', + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59372', + sentAt: '2020-05-21T10:23:15.979Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'identify', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 48, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + originalTimestamp: '2020-05-21T10:23:15.979Z', + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59372', + sentAt: '2020-05-21T10:23:15.979Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'identify', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 48, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'azure_event_hub', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track without property', + integrations: { + All: true, + }, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + originalTimestamp: '2020-05-21T10:23:15.981Z', + properties: {}, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59374', + sentAt: '2020-05-21T10:23:15.981Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'track', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 49, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track without property', + integrations: { + All: true, + }, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + originalTimestamp: '2020-05-21T10:23:15.981Z', + properties: {}, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59374', + sentAt: '2020-05-21T10:23:15.981Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'track', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 49, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'azure_event_hub', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + originalTimestamp: '2020-05-21T10:23:15.982Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59373', + sentAt: '2020-05-21T10:23:15.983Z', + timestamp: '2020-05-21T15:53:16.013+05:30', + type: 'track', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 50, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + originalTimestamp: '2020-05-21T10:23:15.982Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59373', + sentAt: '2020-05-21T10:23:15.983Z', + timestamp: '2020-05-21T15:53:16.013+05:30', + type: 'track', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 50, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/blueshift/processor/data.ts b/test/integrations/destinations/blueshift/processor/data.ts new file mode 100644 index 0000000000..d489a38bd6 --- /dev/null +++ b/test/integrations/destinations/blueshift/processor/data.ts @@ -0,0 +1,1991 @@ +export const data = [ + { + name: 'blueshift', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + dataCenter: 'standard', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.5', + }, + traits: { + name: 'hardik', + email: 'hardik@rudderstack.com', + cookie: '1234abcd-efghklkj-1234kfjadslk-34iu123', + industry: 'Education', + employees: 399, + plan: 'enterprise', + 'total billed': 830, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.5', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + }, + type: 'group', + messageId: 'e5034df0-a404-47b4-a463-76df99934fea', + anonymousId: 'my-anonymous-id-new', + userId: 'sampleusrRudder7', + traits: { + groupType: 'company', + name_trait: 'Company', + value_trait: 'Comapny-ABC', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Missing required value from "groupId"', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.5', + }, + traits: { + name: 'hardik', + email: 'hardik@rudderstack.com', + cookie: '1234abcd-efghklkj-1234kfjadslk-34iu123', + industry: 'Education', + employees: 399, + plan: 'enterprise', + 'total billed': 830, + }, + }, + type: 'group', + userId: 'rudderstack8', + groupId: '35838', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + group_id: '35838', + customer_id: 'rudderstack8', + email: 'hardik@rudderstack.com', + event: 'identify', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + context: { + ip: '14.5.67.21', + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 3, + }, + os: { + name: 'Android', + version: '9', + }, + network: { + bluetooth: false, + carrier: 'Android', + cellular: true, + wifi: true, + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + latitude: '37.7672319', + longitude: '-122.4021353', + state: 'WB', + street: 'rajnagar', + }, + }, + properties: { + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + messageId: '34abcd-efghijkj-1234kf', + type: 'track', + event: 'identify', + userId: 'sampleusrRudder7', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + customer_id: 'sampleusrRudder7', + event: 'identify', + device_type: 'Android', + device_id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_manufacturer: 'Google', + os_name: 'Android', + network_carrier: 'Android', + ip: '14.5.67.21', + latitude: '37.7672319', + longitude: '-122.4021353', + event_uuid: '34abcd-efghijkj-1234kf', + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + type: 'track', + event: 'Product Viewed', + properties: { + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + checkout_id: 'C324532', + order_id: 'T1230', + value: 15.98, + revenue: 16.98, + shipping: 3, + coupon: 'FY21', + currency: 'INR', + products: [ + { + product_id: 'product-mixedfruit-jam', + sku: 'sku-1', + category: 'Food', + name: 'Food/Drink', + brand: 'Sample', + variant: 'None', + price: 10, + quantity: 2, + currency: 'INR', + position: 1, + value: 6, + typeOfProduct: 'Food', + url: 'https://www.example.com/product/bacon-jam', + image_url: 'https://www.example.com/product/bacon-jam.jpg', + }, + ], + }, + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + }, + messageId: '34abcd-efghijkj-1234kf', + userId: 'sampleRudderstack9', + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + event: 'view', + device_type: 'android', + device_id: '7e32188a4dab669f', + device_idfv: '7e32188a4dab669f', + device_manufacturer: 'Google', + os_name: 'Android', + network_carrier: 'Android', + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + checkout_id: 'C324532', + order_id: 'T1230', + value: 15.98, + revenue: 16.98, + shipping: 3, + coupon: 'FY21', + currency: 'INR', + products: [ + { + product_id: 'product-mixedfruit-jam', + sku: 'sku-1', + category: 'Food', + name: 'Food/Drink', + brand: 'Sample', + variant: 'None', + price: 10, + quantity: 2, + currency: 'INR', + position: 1, + value: 6, + typeOfProduct: 'Food', + url: 'https://www.example.com/product/bacon-jam', + image_url: 'https://www.example.com/product/bacon-jam.jpg', + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + type: 'track', + event: 'Products Searched', + properties: { + description: 'Sneaker purchase', + brand: 'Victory Sneakers', + colors: ['red', 'blue'], + items: [ + { + text: 'New Line Sneakers', + price: '$ 79.95', + }, + { + text: 'Old Line Sneakers', + price: '$ 79.95', + }, + { + text: 'Blue Line Sneakers', + price: '$ 79.95', + }, + ], + name: 'Hugh Manbeing', + userLocation: { + state: 'CO', + zip: '80202', + }, + }, + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + }, + messageId: '34abcd-efghijkj-1234kf', + userId: 'sampleRudderstack9', + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.eu.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + event: 'search', + device_type: 'android', + device_id: '7e32188a4dab669f', + device_idfv: '7e32188a4dab669f', + device_manufacturer: 'Google', + os_name: 'Android', + network_carrier: 'Android', + description: 'Sneaker purchase', + brand: 'Victory Sneakers', + colors: ['red', 'blue'], + items: [ + { + text: 'New Line Sneakers', + price: '$ 79.95', + }, + { + text: 'Old Line Sneakers', + price: '$ 79.95', + }, + { + text: 'Blue Line Sneakers', + price: '$ 79.95', + }, + ], + name: 'Hugh Manbeing', + userLocation: { + state: 'CO', + zip: '80202', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + type: 'track', + event: 'Product_purchased', + properties: { + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + messageId: '34abcd-efghijkj-1234kf', + context: { + ip: '14.5.67.21', + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 3, + }, + os: { + name: 'Android', + version: '9', + }, + network: { + bluetooth: false, + carrier: 'Android', + cellular: true, + wifi: true, + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + latitude: '37.7672319', + longitude: '-122.4021353', + state: 'WB', + street: 'rajnagar', + }, + }, + userId: 'sampleRudderstack9', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[BLUESHIFT] event Api Keys required for Authentication.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + type: 'identify', + event: 'Product_purchased', + properties: { + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + messageId: '34abcd-efghijkj-1234kf', + context: { + ip: '14.5.67.21', + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 3, + }, + os: { + name: 'Android', + version: '9', + }, + network: { + bluetooth: false, + carrier: 'Android', + cellular: true, + wifi: true, + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + latitude: '37.7672319', + longitude: '-122.4021353', + state: 'WB', + street: 'rajnagar', + }, + }, + userId: 'sampleRudderstack9', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Missing required value from "email"', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + type: 'identify', + traits: { + email: 'chandan@companyname.com', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + firstname: 'James', + lastname: 'Doe', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + msg_push: true, + msgSms: true, + msgemail: true, + msgwhatsapp: false, + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/customers', + headers: { + Authorization: 'Basic YjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q5MjBlYzFlMmU=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + email: 'chandan@companyname.com', + customer_id: 'rudder123', + phone_number: '92374162212', + firstname: 'James', + lastname: 'Doe', + gender: 'M', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + msg_push: true, + msgSms: true, + msgemail: true, + msgwhatsapp: false, + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + type: 'identify', + traits: { + email: 'chandan@companyname.com', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + firstname: 'James', + lastname: 'Doe', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + msg_push: true, + msgSms: true, + msgemail: true, + msgwhatsapp: false, + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[BLUESHIFT] User API Key required for Authentication.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + ip: '0.0.0.0', + }, + type: 'identify', + traits: { + email: 'chandan@companyname.com', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + firstname: 'James', + lastname: 'Doe', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.eu.getblueshift.com/api/v1/customers', + headers: { + Authorization: 'Basic YjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q5MjBlYzFlMmU=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + email: 'chandan@companyname.com', + customer_id: 'rudder123', + phone_number: '92374162212', + firstname: 'James', + lastname: 'Doe', + gender: 'M', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + ip: '0.0.0.0', + }, + traits: { + email: 'chandan@companyname.com', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + firstname: 'James', + lastname: 'Doe', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Message Type is not present. Aborting message.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + ip: '0.0.0.0', + }, + type: 'page', + traits: { + email: 'chandan@companyname.com', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + firstname: 'James', + lastname: 'Doe', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Message type page not supported', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + type: 'track', + event: 'Order Completed', + properties: { + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + quantity: '2', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + ], + }, + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + userId: 'sampleRudderstack11', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.eu.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + customer_id: 'sampleRudderstack11', + event: 'purchase', + device_type: 'android', + device_id: '7e32188a4dab669f', + device_idfv: '7e32188a4dab669f', + device_manufacturer: 'Google', + os_name: 'Android', + network_carrier: 'Android', + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + quantity: '2', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + context: { + ip: '14.5.67.21', + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 3, + }, + os: { + name: 'Android', + version: '9', + }, + network: { + bluetooth: false, + carrier: 'Android', + cellular: true, + wifi: true, + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + latitude: '37.7672319', + longitude: '-122.4021353', + state: 'WB', + street: 'rajnagar', + }, + }, + properties: { + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + messageId: '34abcd-efghijkj-1234kf', + type: 'track', + event: 'Custom Events', + userId: 'sampleusrRudder7', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.eu.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + customer_id: 'sampleusrRudder7', + event: 'Custom_Events', + device_type: 'Android', + device_id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_manufacturer: 'Google', + os_name: 'Android', + network_carrier: 'Android', + ip: '14.5.67.21', + latitude: '37.7672319', + longitude: '-122.4021353', + event_uuid: '34abcd-efghijkj-1234kf', + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + type: 'track', + event: 'Order 9Completed', + properties: { + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + quantity: '2', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + ], + }, + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + userId: 'sampleRudderstack11', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: + "[Blueshift] Event shouldn't contain period(.), numeric value and contains not more than 64 characters", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + type: 'track', + event: 'Order.Completed', + properties: { + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + quantity: '2', + position: '1', + category: 'Games,Gifts,Entertainment,Toys', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + }, + ], + }, + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + userId: 'sampleRudderstack11', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: + "[Blueshift] Event shouldn't contain period(.), numeric value and contains not more than 64 characters", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 16', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'standard', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + type: 'group', + messageId: 'e5034jh0-a404-47b4-a463-76df99934kl2', + userId: 'sampleusrRudder1', + groupId: 'group22222', + traits: { + name: 'hardik', + email: 'hardik@rudderstack.com', + cookie: '1234abcd-efghklkj-1234kfjadslk-34iu123', + industry: 'Education', + employees: 399, + plan: 'enterprise', + 'total billed': 830, + gender: 'male', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + group_id: 'group22222', + customer_id: 'sampleusrRudder1', + email: 'hardik@rudderstack.com', + device_type: 'android', + device_id: '7e32188a4dab669f', + device_idfv: '7e32188a4dab669f', + device_manufacturer: 'Google', + os_name: 'Android', + network_carrier: 'Android', + event_uuid: 'e5034jh0-a404-47b4-a463-76df99934kl2', + event: 'identify', + name: 'hardik', + cookie: '1234abcd-efghklkj-1234kfjadslk-34iu123', + industry: 'Education', + employees: 399, + plan: 'enterprise', + 'total billed': 830, + gender: 'male', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'blueshift', + description: 'Test 17', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + dataCenter: 'eu', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Mumbai', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + type: 'group', + messageId: 'e5034jh0-a404-47b4-a463-76df99934kl2', + userId: 'sampleusrRudder1', + groupId: 'group22222', + traits: { + name: 'hardik', + email: 'hardik@rudderstack.com', + cookie: '1234abcd-efghklkj-1234kfjadslk-34iu123', + industry: 'Education', + employees: 399, + plan: 'enterprise', + 'total billed': 830, + gender: 'male', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[BLUESHIFT] event API Key required for Authentication.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'BLUESHIFT', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/blueshift/router/data.ts b/test/integrations/destinations/blueshift/router/data.ts new file mode 100644 index 0000000000..7c92ff1d74 --- /dev/null +++ b/test/integrations/destinations/blueshift/router/data.ts @@ -0,0 +1,348 @@ +export const data = [ + { + name: 'blueshift', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + datacenterEU: false, + }, + }, + metadata: { + jobId: 1, + }, + message: { + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.5', + }, + traits: { + name: 'hardik', + email: 'hardik@rudderstack.com', + cookie: '1234abcd-efghklkj-1234kfjadslk-34iu123', + industry: 'Education', + employees: 399, + plan: 'enterprise', + 'total billed': 830, + }, + }, + type: 'group', + userId: 'rudderstack8', + groupId: '35838', + }, + }, + { + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + datacenterEU: false, + }, + }, + metadata: { + jobId: 2, + }, + message: { + context: { + ip: '14.5.67.21', + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 3, + }, + os: { + name: 'Android', + version: '9', + }, + network: { + bluetooth: false, + carrier: 'Android', + cellular: true, + wifi: true, + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + latitude: '37.7672319', + longitude: '-122.4021353', + state: 'WB', + street: 'rajnagar', + }, + }, + properties: { + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + }, + messageId: '34abcd-efghijkj-1234kf', + type: 'track', + event: 'identify', + userId: 'sampleusrRudder7', + }, + }, + { + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + datacenterEU: false, + }, + }, + metadata: { + jobId: 3, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + type: 'identify', + traits: { + email: 'chandan@companyname.com', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + firstname: 'James', + lastname: 'Doe', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + msg_push: true, + msgSms: true, + msgemail: true, + msgwhatsapp: false, + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + destType: 'blueshift', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/event', + headers: { + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + group_id: '35838', + customer_id: 'rudderstack8', + email: 'hardik@rudderstack.com', + event: 'identify', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + datacenterEU: false, + }, + }, + }, + { + batchedRequest: { + body: { + XML: {}, + FORM: {}, + JSON: { + ip: '14.5.67.21', + event: 'identify', + cookie: '1234abcd-efghijkj-1234kfjadslk-34iu123', + os_name: 'Android', + latitude: '37.7672319', + device_id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + longitude: '-122.4021353', + event_uuid: '34abcd-efghijkj-1234kf', + customer_id: 'sampleusrRudder7', + device_idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + device_type: 'Android', + network_carrier: 'Android', + device_manufacturer: 'Google', + }, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic ZWZlYjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q2MjBlYzE=', + }, + version: '1', + endpoint: 'https://api.getblueshift.com/api/v1/event', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + eventApiKey: 'efeb4a29aba5e75d99c8a18acd620ec1', + usersApiKey: 'b4a29aba5e75duic8a18acd920ec1e2e', + datacenterEU: false, + }, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.getblueshift.com/api/v1/customers', + headers: { + Authorization: 'Basic YjRhMjlhYmE1ZTc1ZDk5YzhhMThhY2Q5MjBlYzFlMmU=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + email: 'chandan@companyname.com', + customer_id: 'rudder123', + phone_number: '92374162212', + firstname: 'James', + lastname: 'Doe', + gender: 'M', + userId: 'rudder123', + anonymousId: 'anon_id', + name: 'James Doe', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + msg_push: true, + msgSms: true, + msgemail: true, + msgwhatsapp: false, + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 3, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + eventApiKey: 'a5e75d99c8a18acb4a29abd920ec1e2e', + usersApiKey: 'b4a29aba5e75d99c8a18acd920ec1e2e', + datacenterEU: false, + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/branch/processor/data.ts b/test/integrations/destinations/branch/processor/data.ts new file mode 100644 index 0000000000..9fed354235 --- /dev/null +++ b/test/integrations/destinations/branch/processor/data.ts @@ -0,0 +1,1493 @@ +export const data = [ + { + name: 'branch', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'ios', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '14.4.1', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + properties: { + name: 'sampath', + }, + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + branch_key: '', + name: 'ADD_TO_CART', + content_items: [ + { + $product_name: 'sampath', + }, + ], + user_data: { + os: 'iOS', + os_version: '14.4.1', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 2, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/custom', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + branch_key: '', + name: 'sampath', + custom_data: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + content_items: [{}], + user_data: { + os: 'Android', + os_version: '9', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + android_id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + aaid: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: true, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'page', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + statTags: { + destType: 'BRANCH', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + error: 'Message type is not supported', + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'watchos', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + properties: { + name: 'sampath', + }, + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + content_items: [ + { + $product_name: 'sampath', + }, + ], + user_data: { + os: 'watchos', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + name: 'ADD_TO_CART', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'ipados', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + properties: { + name: 'sampath', + }, + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + content_items: [ + { + $product_name: 'sampath', + }, + ], + user_data: { + os: 'ipados', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + name: 'ADD_TO_CART', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'tvos', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + properties: { + name: 'sampath', + }, + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + content_items: [ + { + $product_name: 'sampath', + }, + ], + user_data: { + os: 'tvos', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + name: 'ADD_TO_CART', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'ios', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '14.4.1', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + user_data: { + os: 'iOS', + os_version: '14.4.1', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + name: 'ADD_TO_CART', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'ios', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + user_data: { + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + name: 'ADD_TO_CART', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'ios', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '14.4.1', + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + user_data: { + os: 'iOS', + os_version: '14.4.1', + developer_identity: 'sampath', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: false, + model: 'AOSP on IA Emulator', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + name: 'ADD_TO_CART', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'ios', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '14.4.1', + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Event name is required', + statTags: { + destType: 'BRANCH', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'Android', + attTrackingStatus: 2, + brand: 'testBrand', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 2, + height: 1794, + width: 1080, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/custom', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + custom_data: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + content_items: [{}], + user_data: { + os: 'Android', + os_version: '9', + app_version: '1.0.0', + model: 'AOSP on IA Emulator', + brand: 'testBrand', + screen_dpi: 2, + screen_height: 1794, + screen_width: 1080, + developer_identity: 'sampath', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + android_id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + aaid: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: true, + }, + name: 'sampath', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'branch', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + id: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'ios', + attTrackingStatus: 2, + brand: 'testBrand', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '14.4.1', + }, + screen: { + density: 2, + height: 1794, + width: 1080, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/custom', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + custom_data: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + content_items: [{}], + user_data: { + os: 'iOS', + os_version: '14.4.1', + app_version: '1.0.0', + model: 'AOSP on IA Emulator', + brand: 'testBrand', + screen_dpi: 2, + screen_height: 1794, + screen_width: 1080, + developer_identity: 'sampath', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + idfa: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + idfv: '3f034872-5e28-45a1-9eda-ce22a3e36d1a', + limit_ad_tracking: true, + }, + name: 'sampath', + branch_key: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/branch/router/data.ts b/test/integrations/destinations/branch/router/data.ts new file mode 100644 index 0000000000..4c87145b7e --- /dev/null +++ b/test/integrations/destinations/branch/router/data.ts @@ -0,0 +1,276 @@ +export const data = [ + { + name: 'branch', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + metadata: { + jobId: 1, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + properties: { + name: 'sampath', + }, + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'track', + userId: 'sampath', + }, + }, + { + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'iOS', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + ], + destType: 'branch', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/standard', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + branch_key: '', + name: 'ADD_TO_CART', + content_items: [ + { + $product_name: 'sampath', + }, + ], + user_data: { + os: 'iOS', + os_version: '', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api2.branch.io/v2/event/custom', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + branch_key: '', + name: 'sampath', + custom_data: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + content_items: [{}], + user_data: { + os: 'iOS', + os_version: '', + app_version: '1.0.0', + screen_dpi: 2, + developer_identity: 'sampath', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + branchKey: '', + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Branch Metrics', + ID: '1WTpBSTiL3iAUHUdW7rHT4sawgU', + Name: 'BRANCH', + }, + Enabled: true, + ID: '1WTpIHpH7NTBgjeiUPW1kCUgZGI', + Name: 'branch test', + Transformations: [], + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/campaign_manager/processor/data.ts b/test/integrations/destinations/campaign_manager/processor/data.ts new file mode 100644 index 0000000000..beff44c928 --- /dev/null +++ b/test/integrations/destinations/campaign_manager/processor/data.ts @@ -0,0 +1,830 @@ +export const data = [ + { + name: 'campaign_manager', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + profileId: '34245', + floodlightConfigurationId: '213123123', + ordinal: 'string', + floodlightActivityId: '456543345245', + value: '756', + encryptedUserIdCandidates: ['dfghjbnm'], + quantity: '455678', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + requestType: 'batchinsert', + }, + type: 'track', + event: 'event test', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + destination: { + Config: { + profileId: '5343234', + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchinsert', + headers: { + Authorization: 'Bearer dummyApiToken', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + kind: 'dfareporting#conversionsBatchInsertRequest', + encryptionInfo: { + encryptionEntityType: 'DCM_ACCOUNT', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + kind: 'dfareporting#encryptionInfo', + }, + conversions: [ + { + floodlightConfigurationId: '213123123', + ordinal: 'string', + timestampMicros: '1668624722903000', + floodlightActivityId: '456543345245', + quantity: '455678', + value: 756, + encryptedUserIdCandidates: ['dfghjbnm'], + nonPersonalizedAd: false, + treatmentForUnderage: false, + childDirectedTreatment: false, + limitAdTracking: false, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'campaign_manager', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + originalTimestamp: '2021-01-04T08:25:04.780Z', + properties: { + profileId: '34245', + floodlightConfigurationId: '213123123', + ordinal: 'string', + floodlightActivityId: '456543345245', + value: '756', + quantity: '455678', + gclid: 'string', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + requestType: 'batchupdate', + }, + type: 'track', + event: 'event test', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + destination: { + Config: { + profileId: '5343234', + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchupdate', + headers: { + Authorization: 'Bearer dummyApiToken', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + kind: 'dfareporting#conversionsBatchUpdateRequest', + conversions: [ + { + floodlightConfigurationId: '213123123', + ordinal: 'string', + timestampMicros: '1609748704780000', + floodlightActivityId: '456543345245', + quantity: '455678', + value: 756, + gclid: 'string', + nonPersonalizedAd: false, + treatmentForUnderage: false, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'campaign_manager', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + profileId: '34245', + floodlightConfigurationId: '213123123', + ordinal: 'string', + floodlightActivityId: '456543345245', + mobileDeviceId: 'string', + value: '756', + encryptedUserIdCandidates: ['dfghjbnm'], + quantity: '455678', + gclid: 'string', + matchId: 'string', + dclid: 'string', + impressionId: 'string', + requestType: 'batchinsert', + }, + type: 'track', + event: 'event test', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + destination: { + Config: { + profileId: '5343234', + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + statusCode: 400, + error: + '[CAMPAIGN MANAGER (DCM)]: If encryptedUserId or encryptedUserIdCandidates is used, provide proper values for properties.encryptionEntityType , properties.encryptionSource and properties.encryptionEntityId', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CAMPAIGN_MANAGER', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'campaign_manager', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'sources', + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + floodlightConfigurationId: '213123123', + ordinal: 'string', + floodlightActivityId: '456543345245', + value: '756', + quantity: '455678', + requestType: 'batchinsert', + }, + type: 'track', + event: 'event test', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + destination: { + Config: { + profileId: '5343234', + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + statusCode: 400, + error: + '[CAMPAIGN MANAGER (DCM)]: Atleast one of encryptedUserId,encryptedUserIdCandidates, matchId, mobileDeviceId, gclid, dclid, impressionId.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CAMPAIGN_MANAGER', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'campaign_manager', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + profileId: '34245', + floodlightConfigurationId: '213123123', + ordinal: '1', + floodlightActivityId: '456543345245', + value: '756', + quantity: '455678', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + requestType: 'batchinsert', + matchId: '123', + }, + type: 'track', + event: 'event test', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + destination: { + Config: { + profileId: '5343234', + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchinsert', + headers: { + Authorization: 'Bearer dummyApiToken', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + kind: 'dfareporting#conversionsBatchInsertRequest', + conversions: [ + { + floodlightConfigurationId: '213123123', + ordinal: '1', + timestampMicros: '1668624722903000', + floodlightActivityId: '456543345245', + quantity: '455678', + value: 756, + matchId: '123', + nonPersonalizedAd: false, + treatmentForUnderage: false, + childDirectedTreatment: false, + limitAdTracking: false, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'campaign_manager', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + originalTimestamp: '1668624722903333', + properties: { + profileId: '34245', + floodlightConfigurationId: '213123123', + ordinal: '1', + floodlightActivityId: '456543345245', + value: '756', + quantity: '455678', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + requestType: 'batchinsert', + matchId: '123', + }, + type: 'track', + event: 'event test', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + destination: { + Config: { + profileId: '5343234', + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/34245/conversions/batchinsert', + headers: { + Authorization: 'Bearer dummyApiToken', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + kind: 'dfareporting#conversionsBatchInsertRequest', + conversions: [ + { + floodlightConfigurationId: '213123123', + ordinal: '1', + timestampMicros: '1668624722903333', + floodlightActivityId: '456543345245', + quantity: '455678', + value: 756, + matchId: '123', + nonPersonalizedAd: false, + treatmentForUnderage: false, + childDirectedTreatment: false, + limitAdTracking: false, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/campaign_manager/router/data.ts b/test/integrations/destinations/campaign_manager/router/data.ts new file mode 100644 index 0000000000..95372e1925 --- /dev/null +++ b/test/integrations/destinations/campaign_manager/router/data.ts @@ -0,0 +1,464 @@ +export const data = [ + { + name: 'campaign_manager', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + jobId: 1, + }, + destination: { + Config: { + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'Promotion Clicked', + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + profileId: 437689, + floodlightConfigurationId: '213123123', + ordinal: 'string', + quantity: '455678', + floodlightActivityId: '456543345245', + value: 7, + encryptedUserIdCandidates: ['dfghjbnm'], + limitAdTracking: true, + childDirectedTreatment: true, + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + requestType: 'batchinsert', + }, + type: 'track', + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2022-11-17T00:22:02.903+05:30', + }, + }, + { + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + jobId: 2, + }, + destination: { + Config: { + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'Promotion Clicked', + type: 'track', + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + profileId: 437689, + floodlightConfigurationId: '213123123', + ordinal: 'string', + floodlightActivityId: '456543345245', + quantity: '455678', + value: 7, + encryptedUserIdCandidates: ['dfghjbnm'], + limitAdTracking: true, + childDirectedTreatment: true, + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + requestType: 'batchupdate', + }, + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2022-11-17T00:22:02.903+05:30', + }, + }, + { + metadata: { + secret: { + access_token: 'dummyApiToken', + refresh_token: 'efgh5678', + developer_token: 'ijkl91011', + }, + jobId: 3, + }, + destination: { + Config: { + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + id: '0572f78fa49c648e', + name: 'generic_x86_arm', + type: 'Android', + model: 'AOSP on IA Emulator', + manufacturer: 'Google', + adTrackingEnabled: true, + advertisingId: '44c97318-9040-4361-8bc7-4eb30f665ca8', + }, + traits: { + email: 'alex@example.com', + phone: '+1-202-555-0146', + firstName: 'John', + lastName: 'Gomes', + city: 'London', + state: 'England', + countryCode: 'GB', + postalCode: 'EC3M', + streetAddress: '71 Cherry Court SOUTHAMPTON SO53 5PD UK', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'Promotion Clicked', + type: 'track', + originalTimestamp: '2022-11-17T00:22:02.903+05:30', + properties: { + profileId: 437689, + floodlightConfigurationId: '213123123', + ordinal: 'string', + floodlightActivityId: '456543345245', + mobileDeviceId: 'string', + value: 7, + encryptedUserIdCandidates: ['dfghjbnm'], + gclid: 'string', + matchId: 'string', + dclid: 'string', + quantity: '455678', + impressionId: 'string', + limitAdTracking: true, + childDirectedTreatment: true, + encryptionInfo: { + kind: 'dfareporting#encryptionInfo', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + }, + requestType: 'randomValue', + }, + anonymousId: 'randomId', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2022-11-17T00:22:02.903+05:30', + }, + }, + ], + destType: 'campaign_manager', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/437689/conversions/batchinsert', + headers: { + Authorization: 'Bearer dummyApiToken', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + kind: 'dfareporting#conversionsBatchInsertRequest', + encryptionInfo: { + kind: 'dfareporting#encryptionInfo', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + }, + conversions: [ + { + nonPersonalizedAd: false, + treatmentForUnderage: false, + timestampMicros: '1668624722903000', + floodlightConfigurationId: '213123123', + ordinal: 'string', + quantity: '455678', + floodlightActivityId: '456543345245', + value: 7, + encryptedUserIdCandidates: ['dfghjbnm'], + limitAdTracking: true, + childDirectedTreatment: true, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + secret: { + access_token: 'dummyApiToken', + developer_token: 'ijkl91011', + refresh_token: 'efgh5678', + }, + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + childDirectedTreatment: false, + limitAdTracking: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + treatmentForUnderage: false, + }, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/437689/conversions/batchupdate', + headers: { + Authorization: 'Bearer dummyApiToken', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + kind: 'dfareporting#conversionsBatchUpdateRequest', + encryptionInfo: { + kind: 'dfareporting#encryptionInfo', + encryptionSource: 'AD_SERVING', + encryptionEntityId: '3564523', + encryptionEntityType: 'DCM_ACCOUNT', + }, + conversions: [ + { + nonPersonalizedAd: false, + treatmentForUnderage: false, + timestampMicros: '1668624722903000', + floodlightConfigurationId: '213123123', + ordinal: 'string', + quantity: '455678', + floodlightActivityId: '456543345245', + value: 7, + encryptedUserIdCandidates: ['dfghjbnm'], + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + secret: { + access_token: 'dummyApiToken', + developer_token: 'ijkl91011', + refresh_token: 'efgh5678', + }, + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + childDirectedTreatment: false, + limitAdTracking: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + treatmentForUnderage: false, + }, + }, + }, + { + destination: { + Config: { + treatmentForUnderage: false, + limitAdTracking: false, + childDirectedTreatment: false, + nonPersonalizedAd: false, + rudderAccountId: '2EOknn1JNH7WK1MfNku4fGYKkRK', + }, + }, + batched: false, + error: + '[CAMPAIGN MANAGER (DCM)]: properties.requestType must be one of batchinsert or batchupdate.', + metadata: [ + { + secret: { + access_token: 'dummyApiToken', + developer_token: 'ijkl91011', + refresh_token: 'efgh5678', + }, + jobId: 3, + }, + ], + statusCode: 400, + statTags: { + destType: 'CAMPAIGN_MANAGER', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/candu/processor/data.ts b/test/integrations/destinations/candu/processor/data.ts new file mode 100644 index 0000000000..6e5ae636bd --- /dev/null +++ b/test/integrations/destinations/candu/processor/data.ts @@ -0,0 +1,1366 @@ +export const data = [ + { + name: 'candu', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'identify', + sentAt: '2022-01-20T13:39:21.033Z', + userId: 'user123456001', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: '831f1fa5-de84-4f22-880a-4c3f23fc3f04', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.candu.ai/api/eventWebhook', + headers: { + Authorization: 'Basic RlhMa0xVRWhHSnl2bVk0', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + type: 'identify', + userId: 'user123456001', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + messageId: '831f1fa5-de84-4f22-880a-4c3f23fc3f04', + context: { + source: 'RudderStack', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'track', + event: 'testEventWithoutProp', + sentAt: '2022-01-20T14:32:51.506Z', + userId: 'user123456001', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + properties: {}, + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T14:32:51.506Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.candu.ai/api/eventWebhook', + headers: { + Authorization: 'Basic RlhMa0xVRWhHSnl2bVk0', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + type: 'track', + event: 'testEventWithoutProp', + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + properties: {}, + userId: 'user123456001', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + context: { + source: 'RudderStack', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'track', + sentAt: '2022-01-20T14:42:59.775Z', + userId: '', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '127.0.0.1:7307', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '1877191c-3537-46dc-a35a-e2a4d13ed3f7', + messageId: 'fea245ef-6150-42c4-84e0-51fa68e71a88', + properties: {}, + anonymousId: 'd18df757-34aa-4f71-91a8-7f9ef2940963', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T14:42:25.343Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Missing required value from "event"', + statTags: { + destType: 'CANDU', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'page', + sentAt: '2022-01-20T15:30:57.470Z', + userId: 'testUser1234', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '127.0.0.1:7307', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 632, + }, + traits: {}, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: 'aa193f3b-6d42-466f-a781-6a666cfe17c3', + messageId: 'bf869c14-5f96-4cbc-94b2-3de9252c216b', + properties: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '127.0.0.1:7307', + }, + anonymousId: 'd18df757-34aa-4f71-91a8-7f9ef2940963', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T15:30:57.470Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[CANDU]:: Message type page not supported.', + statTags: { + destType: 'CANDU', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: ' ', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'track', + event: 'testEventWithoutProp', + sentAt: '2022-01-20T14:32:51.506Z', + userId: 'user123456001', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + properties: {}, + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T14:32:51.506Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[CANDU]:: apiKey cannot be empty.', + statTags: { + destType: 'CANDU', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + event: 'testEventWithoutProp', + sentAt: '2022-01-20T14:32:51.506Z', + userId: 'user123456001', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + properties: {}, + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T14:32:51.506Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: '[CANDU]:: Message Type is not present. Aborting message.', + statTags: { + destType: 'CANDU', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'identify', + sentAt: '2022-01-20T13:39:21.033Z', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + userId: 2399229, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: '831f1fa5-de84-4f22-880a-4c3f23fc3f04', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.candu.ai/api/eventWebhook', + headers: { + Authorization: 'Basic RlhMa0xVRWhHSnl2bVk0', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + userId: 2399229, + }, + userId: '2399229', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + messageId: '831f1fa5-de84-4f22-880a-4c3f23fc3f04', + type: 'identify', + context: { + source: 'RudderStack', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'track', + event: 'testEventWithoutProp', + sentAt: '2022-01-20T14:32:51.506Z', + userId: 'user123456001', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + properties: ['1234', '5678', '91011'], + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T14:32:51.506Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.candu.ai/api/eventWebhook', + headers: { + Authorization: 'Basic RlhMa0xVRWhHSnl2bVk0', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + event: 'testEventWithoutProp', + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + properties: ['1234', '5678', '91011'], + userId: 'user123456001', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + type: 'track', + context: { + source: 'RudderStack', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'candu', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + type: 'track', + event: 'testEventWithoutProp', + sentAt: '2022-01-20T14:32:51.506Z', + userId: '', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.2.20', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + path: '/Testing/App_for_LaunchDarkly/ourSdk.html', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/ourSdk.html', + referrer: 'http://127.0.0.1:7307/Testing/App_for_LaunchDarkly/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:7307', + initial_referring_domain: '', + }, + locale: 'en-US', + screen: { + width: 1440, + height: 900, + density: 2, + innerWidth: 536, + innerHeight: 689, + }, + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.2.20', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36', + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + properties: [], + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + integrations: { + All: true, + }, + originalTimestamp: '2022-01-20T14:32:51.506Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + userId: '', + method: 'POST', + endpoint: 'https://api.candu.ai/api/eventWebhook', + headers: { + Authorization: 'Basic RlhMa0xVRWhHSnl2bVk0', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + event: 'testEventWithoutProp', + traits: { + city: 'Pune', + name: 'First User', + email: 'firstUser@testmail.com', + title: 'VP', + gender: 'female', + }, + properties: [], + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + messageId: 'e9f3dfb4-562c-48f4-b0cf-85782dfc9b1e', + type: 'track', + context: { + source: 'RudderStack', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/candu/router/data.ts b/test/integrations/destinations/candu/router/data.ts new file mode 100644 index 0000000000..8aa6441881 --- /dev/null +++ b/test/integrations/destinations/candu/router/data.ts @@ -0,0 +1,212 @@ +export const data = [ + { + name: 'candu', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { + defaultConfig: ['apiKey'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'FXLkLUEhGJyvmY4', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + metadata: { + jobId: 1, + }, + message: { + anonymousId: 'a1b2c3d4e5f6g7h8i9j10', + channel: 'mobile', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + adTrackingEnabled: true, + advertisingId: '', + id: '', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + attTrackingStatus: 3, + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: 'watchos', + }, + screen: { + density: 2, + }, + traits: { + email: 'sampath@gmail.com', + name: 'Joker', + Gender: 'male', + foo: { + foo: 'bar', + }, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'product added', + integrations: { + All: true, + }, + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + originalTimestamp: '2020-01-17T04:53:51.185Z', + receivedAt: '2020-01-17T10:23:52.688+05:30', + request_ip: '[::1]:64059', + sentAt: '2020-01-17T04:53:52.667Z', + timestamp: '2020-01-17T10:23:51.206+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + ], + destType: 'candu', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.candu.ai/api/eventWebhook', + headers: { + Authorization: 'Basic RlhMa0xVRWhHSnl2bVk0', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + traits: { + email: 'sampath@gmail.com', + name: 'Joker', + Gender: 'male', + foo: { foo: 'bar' }, + }, + type: 'identify', + userId: 'sampath', + anonymousId: 'a1b2c3d4e5f6g7h8i9j10', + timestamp: '2020-01-17T10:23:51.206+05:30', + messageId: 'ea5cfab2-3961-4d8a-8187-3d1858c90a9f', + context: { source: 'RudderStack' }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + ID: '23uZJcllEOBx8GbZ31qYzoML8Up', + Name: 'Candu local', + DestinationDefinition: { + ID: '23uYPwdkxT7pUNDAiCVNK3aU0sT', + Name: 'CANDU', + DisplayName: 'Candu', + Config: { + destConfig: { defaultConfig: ['apiKey'] }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'blackListedEvents', + 'whiteListedEvents', + 'oneTrustCookieCategories', + ], + saveDestinationResponse: true, + secretKeys: ['apiKey'], + supportedMessageTypes: ['identify', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'reactnative', + 'flutter', + 'cordova', + ], + transformAt: 'router', + transformAtV1: 'router', + }, + ResponseRules: {}, + }, + Config: { apiKey: 'FXLkLUEhGJyvmY4' }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/confluent_cloud/processor/data.ts b/test/integrations/destinations/confluent_cloud/processor/data.ts new file mode 100644 index 0000000000..dd43f1be83 --- /dev/null +++ b/test/integrations/destinations/confluent_cloud/processor/data.ts @@ -0,0 +1,835 @@ +export const data = [ + { + name: 'confluent_cloud', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'Purchase', + integrations: { + All: true, + }, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + originalTimestamp: '2020-05-21T10:23:15.984Z', + properties: { + currency: 'USD', + revenue: 100, + }, + receivedAt: '2020-05-21T15:53:16.013+05:30', + request_ip: '[::1]:59371', + sentAt: '2020-05-21T10:23:15.985Z', + timestamp: '2020-05-21T15:53:16.012+05:30', + type: 'track', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 46, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'Purchase', + integrations: { + All: true, + }, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + originalTimestamp: '2020-05-21T10:23:15.984Z', + properties: { + currency: 'USD', + revenue: 100, + }, + receivedAt: '2020-05-21T15:53:16.013+05:30', + request_ip: '[::1]:59371', + sentAt: '2020-05-21T10:23:15.985Z', + timestamp: '2020-05-21T15:53:16.012+05:30', + type: 'track', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 46, + messageId: 'ce46866c-6f19-42f0-86cb-18c51863b817', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'confluent_cloud', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + originalTimestamp: '2020-05-21T10:23:15.975Z', + properties: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:58616', + sentAt: '2020-05-21T10:23:15.975Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'page', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 47, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + originalTimestamp: '2020-05-21T10:23:15.975Z', + properties: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:58616', + sentAt: '2020-05-21T10:23:15.975Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'page', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 47, + messageId: 'e02dafb0-9df8-4fa2-becd-f4d8617956a4', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'confluent_cloud', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + originalTimestamp: '2020-05-21T10:23:15.979Z', + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59372', + sentAt: '2020-05-21T10:23:15.979Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'identify', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 48, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + originalTimestamp: '2020-05-21T10:23:15.979Z', + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59372', + sentAt: '2020-05-21T10:23:15.979Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'identify', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 48, + messageId: '41b62b30-db5d-450c-98ed-cec14ead27cc', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'confluent_cloud', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track without property', + integrations: { + All: true, + }, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + originalTimestamp: '2020-05-21T10:23:15.981Z', + properties: {}, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59374', + sentAt: '2020-05-21T10:23:15.981Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'track', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 49, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track without property', + integrations: { + All: true, + }, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + originalTimestamp: '2020-05-21T10:23:15.981Z', + properties: {}, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59374', + sentAt: '2020-05-21T10:23:15.981Z', + timestamp: '2020-05-21T15:53:16.014+05:30', + type: 'track', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 49, + messageId: 'c409577d-5dd4-430a-8965-a20aed7b9c9e', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'confluent_cloud', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1cCz8hts5rp3YWglzhU1GPmVdjE', + Name: 'Azure Event Hub', + DestinationDefinition: { + ID: '1cCs4qQ72QY8vovP7BlJ47mkjBh', + Name: 'AZURE_EVENT_HUB', + DisplayName: 'Azure Event Hub', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: null, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + originalTimestamp: '2020-05-21T10:23:15.982Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59373', + sentAt: '2020-05-21T10:23:15.983Z', + timestamp: '2020-05-21T15:53:16.013+05:30', + type: 'track', + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 50, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index7.html', + referrer: 'http://localhost:1111/tests/html/', + search: '', + title: '', + url: 'http://localhost:1111/tests/html/index7.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'test@kinesis.com', + firstname: 'Test Kinesis', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36', + }, + event: 'test track with property', + integrations: { + All: true, + }, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + originalTimestamp: '2020-05-21T10:23:15.982Z', + properties: { + test_prop_1: 'test prop', + test_prop_2: 1232, + }, + receivedAt: '2020-05-21T15:53:16.014+05:30', + request_ip: '[::1]:59373', + sentAt: '2020-05-21T10:23:15.983Z', + timestamp: '2020-05-21T15:53:16.013+05:30', + type: 'track', + userId: 'user-12345', + }, + userId: 'user-12345', + }, + metadata: { + anonymousId: 'd36981e7-6413-4862-9bb9-b8595fb3d0d4', + destinationId: '1cCz8hts5rp3YWglzhU1GPmVdjE', + destinationType: 'AZURE_EVENT_HUB', + jobId: 50, + messageId: 'f8b6e882-3186-446a-b589-51eba60930d7', + sourceId: '1bqCEGibwCvR7F0acuLzbEMQYIC', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/courier/processor/data.ts b/test/integrations/destinations/courier/processor/data.ts new file mode 100644 index 0000000000..9371f9e7b2 --- /dev/null +++ b/test/integrations/destinations/courier/processor/data.ts @@ -0,0 +1,333 @@ +export const data = [ + { + name: 'courier', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'track', + channel: 'web', + event: 'Product Added', + properties: {}, + context: {}, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + destination: { + Config: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'apiKey is required', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'COURIER', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'courier', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + context: { + ip: '8.8.8.8', + }, + traits: { + name: 'Joe Doe', + email: 'joe@example.com', + plan: 'basic', + age: 27, + }, + type: 'identify', + userId: 'userIdTest', + originalTimestamp: '2022-10-17T15:53:10.566+05:30', + messageId: '8d04cc30-fc15-49bd-901f-c5c3f72a7d82', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.courier.com/inbound/rudderstack', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Bearer dummyApiKey', + }, + params: {}, + body: { + JSON: { + context: { + ip: '8.8.8.8', + }, + traits: { + name: 'Joe Doe', + email: 'joe@example.com', + plan: 'basic', + age: 27, + }, + type: 'identify', + userId: 'userIdTest', + originalTimestamp: '2022-10-17T15:53:10.566+05:30', + messageId: '8d04cc30-fc15-49bd-901f-c5c3f72a7d82', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'courier', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + context: { + ip: '8.8.8.8', + traits: { + name: 'Joe Doe', + email: 'joe@example.com', + plan: 'basic', + age: 27, + }, + }, + type: 'identify', + userId: 'userIdTest', + originalTimestamp: '2022-10-17T15:53:10.566+05:30', + messageId: '8d04cc30-fc15-49bd-901f-c5c3f72a7d82', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.courier.com/inbound/rudderstack', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Bearer dummyApiKey', + }, + params: {}, + body: { + JSON: { + context: { + ip: '8.8.8.8', + traits: { + name: 'Joe Doe', + email: 'joe@example.com', + plan: 'basic', + age: 27, + }, + }, + type: 'identify', + userId: 'userIdTest', + originalTimestamp: '2022-10-17T15:53:10.566+05:30', + messageId: '8d04cc30-fc15-49bd-901f-c5c3f72a7d82', + traits: { + name: 'Joe Doe', + email: 'joe@example.com', + plan: 'basic', + age: 27, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'courier', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + context: { + ip: '8.8.8.8', + }, + type: 'identify', + userId: 'userIdTest', + originalTimestamp: '2022-10-17T15:53:10.566+05:30', + messageId: '8d04cc30-fc15-49bd-901f-c5c3f72a7d82', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'traits is a required field for identify call', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'COURIER', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'courier', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + context: { + ip: '8.8.8.8', + }, + event: 'trackTest', + properties: { + activity: 'checkout', + }, + userId: 'userIdTest', + type: 'track', + messageId: '3c0abc14-96a2-4aed-9dfc-ee463832cc24', + originalTimestamp: '2022-10-17T15:32:44.202+05:30', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.courier.com/inbound/rudderstack', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Bearer dummyApiKey', + }, + params: {}, + body: { + JSON: { + context: { + ip: '8.8.8.8', + }, + event: 'trackTest', + properties: { + activity: 'checkout', + }, + userId: 'userIdTest', + type: 'track', + messageId: '3c0abc14-96a2-4aed-9dfc-ee463832cc24', + originalTimestamp: '2022-10-17T15:32:44.202+05:30', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/courier/router/data.ts b/test/integrations/destinations/courier/router/data.ts new file mode 100644 index 0000000000..a3a3237197 --- /dev/null +++ b/test/integrations/destinations/courier/router/data.ts @@ -0,0 +1,160 @@ +export const data = [ + { + name: 'courier', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + type: 'track', + channel: 'web', + event: 'Product Added', + userId: 'test123', + properties: { + price: 999, + quantity: 1, + }, + context: { + traits: { + firstName: 'John', + age: 27, + }, + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + }, + }, + metadata: { + jobId: 1, + }, + }, + { + message: { + type: 'track', + channel: 'web', + event: 'Product Added', + properties: {}, + context: {}, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + destination: { + Config: { + sdkKey: 'test-sdk-key', + trackKnownUsers: false, + nonInteraction: false, + listen: false, + trackCategorizedPages: true, + trackNamedPages: true, + }, + }, + metadata: { + jobId: 2, + }, + }, + ], + destType: 'courier', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batched: false, + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.courier.com/inbound/rudderstack', + headers: { + Authorization: 'Bearer dummyApiKey', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + type: 'track', + channel: 'web', + event: 'Product Added', + userId: 'test123', + properties: { + price: 999, + quantity: 1, + }, + context: { + traits: { + firstName: 'John', + age: 27, + }, + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + }, + }, + metadata: [ + { + jobId: 1, + }, + ], + statusCode: 200, + }, + { + batched: false, + error: 'apiKey is required', + metadata: [ + { + jobId: 2, + }, + ], + statTags: { + destType: 'COURIER', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + destination: { + Config: { + sdkKey: 'test-sdk-key', + trackKnownUsers: false, + nonInteraction: false, + listen: false, + trackCategorizedPages: true, + trackNamedPages: true, + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/criteo_audience/processor/data.ts b/test/integrations/destinations/criteo_audience/processor/data.ts new file mode 100644 index 0000000000..61573fed9b --- /dev/null +++ b/test/integrations/destinations/criteo_audience/processor/data.ts @@ -0,0 +1,1616 @@ +export const data = [ + { + name: 'criteo_audience', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + }, + { + madid: 'sample_madid', + email: 'alex@email.com', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34894', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34894/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'email', + internalIdentifiers: false, + identifiers: [ + 'alex@email.com', + 'amy@email.com', + 'van@email.com', + 'alex@email.com', + 'amy@email.com', + 'van@email.com', + ], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + }, + { + madid: 'sample_madid_1', + }, + { + madid: 'sample_madid_2', + }, + { + madid: 'sample_madid_10', + }, + { + madid: 'sample_madid_13', + }, + { + madid: 'sample_madid_11', + }, + { + madid: 'sample_madid_12', + }, + ], + remove: [ + { + madid: 'sample_madid_3', + }, + { + madid: 'sample_madid_4', + }, + { + madid: 'sample_madid_5', + }, + { + madid: 'sample_madid_6', + }, + { + madid: 'sample_madid_7', + }, + { + madid: 'sample_madid_8', + }, + { + madid: 'sample_madid_9', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'madid', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'madid', + internalIdentifiers: false, + identifiers: [ + 'sample_madid', + 'sample_madid_1', + 'sample_madid_2', + 'sample_madid_10', + 'sample_madid_13', + 'sample_madid_11', + 'sample_madid_12', + ], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'remove', + identifierType: 'madid', + internalIdentifiers: false, + identifiers: [ + 'sample_madid_3', + 'sample_madid_4', + 'sample_madid_5', + 'sample_madid_6', + 'sample_madid_7', + 'sample_madid_8', + 'sample_madid_9', + ], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34894', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34894/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'email', + internalIdentifiers: false, + identifiers: ['alex@email.com', 'amy@email.com', 'van@email.com'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34895', + audienceType: 'madid', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34895/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'madid', + internalIdentifiers: false, + identifiers: ['sample_madid', 'sample_madid_1', 'sample_madid_2'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + remove: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'madid', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'madid', + internalIdentifiers: false, + identifiers: ['sample_madid', 'sample_madid_1', 'sample_madid_2'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'remove', + identifierType: 'madid', + internalIdentifiers: false, + identifiers: ['sample_madid'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + remove: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'identityLink', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'identityLink', + internalIdentifiers: false, + identifiers: ['text.com', 'yahoo.com', 'abc.com'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'remove', + identifierType: 'identityLink', + internalIdentifiers: false, + identifiers: ['text.com'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sample_gum1', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sample_gum2', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sample_gum3', + }, + ], + remove: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sample_gum3', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'gum', + gumCallerId: '329739', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'gum', + internalIdentifiers: false, + gumCallerId: '329739', + identifiers: ['sample_gum1', 'sample_gum2', 'sample_gum3'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'remove', + identifierType: 'gum', + internalIdentifiers: false, + gumCallerId: '329739', + identifiers: ['sample_gum3'], + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'identify', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'Event type identify is not supported', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + message: { + type: 'audiencelist', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user@27', + channel: 'web', + context: { + os: { + name: '', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + brand: 'John Players', + price: '15000', + firstName: 'Test', + email: 'test@rudderstack.com', + userId: 'user@27', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: '2021-01-03T17:02:53.193Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'Message properties is not present. Aborting message.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + message: { + event: 'add_to_Cart', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user@27', + channel: 'web', + properties: { + brand: 'Zara', + price: '12000', + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: '2021-01-03T17:02:53.193Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'listData is not present inside properties. Aborting message.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: {}, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'Payload could not be populated', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + message: { + event: 'add_to_Cart', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user@27', + channel: 'web', + properties: { + brand: 'Zara', + price: '12000', + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: '2021-01-03T17:02:53.193Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'Message Type is not present. Aborting message.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + destination: { + Config: { + audienceId: '34893', + audienceType: 'gum', + }, + ID: 'sample_destinationId', + }, + message: { + event: 'add_to_Cart', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user@27', + type: 'audiencelist', + channel: 'web', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sample_gum1', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sample_gum2', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sample_gum3', + }, + ], + }, + brand: 'Zara', + price: '12000', + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: '2021-01-03T17:02:53.193Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'gumCallerId is required for audience type gum', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'criteo_audience', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34894', + audienceType: 'email', + }, + ID: 'sample_destinationId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + accessToken: 'success_access_token', + }, + }, + statusCode: 400, + error: 'Required property for email type audience is not available in an object', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'CRITEO_AUDIENCE', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/criteo_audience/router/data.ts b/test/integrations/destinations/criteo_audience/router/data.ts new file mode 100644 index 0000000000..a91c112663 --- /dev/null +++ b/test/integrations/destinations/criteo_audience/router/data.ts @@ -0,0 +1,270 @@ +export const data = [ + { + name: 'criteo_audience', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'iwehr83843', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + jobId: 1, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + { + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'madid', + }, + ID: 'iwehr83843', + }, + metadata: { + secret: { + accessToken: 'success_access_token', + }, + jobId: 2, + }, + message: { + userId: 'user 1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_1', + email: 'amy@email.com', + identityLink: 'yahoo.com', + gum: 'sdjfds', + }, + { + madid: 'sample_madid_2', + email: 'van@email.com', + identityLink: 'abc.com', + gum: 'sdjfds', + }, + ], + remove: [ + { + madid: 'sample_madid', + email: 'alex@email.com', + identityLink: 'text.com', + gum: 'sdjfds', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + ], + destType: 'criteo_audience', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'email', + identifiers: ['alex@email.com', 'amy@email.com', 'van@email.com'], + internalIdentifiers: false, + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 1, + secret: { + accessToken: 'success_access_token', + }, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'email', + }, + ID: 'iwehr83843', + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'add', + identifierType: 'madid', + identifiers: ['sample_madid', 'sample_madid_1', 'sample_madid_2'], + internalIdentifiers: false, + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'PATCH', + endpoint: 'https://api.criteo.com/2022-10/audiences/34893/contactlist', + headers: { + Authorization: 'Bearer success_access_token', + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + data: { + type: 'ContactlistAmendment', + attributes: { + operation: 'remove', + identifierType: 'madid', + identifiers: ['sample_madid'], + internalIdentifiers: false, + }, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 2, + secret: { + accessToken: 'success_access_token', + }, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + clientId: 'abcdef8-f49-4cd6-b4c5-958b3d66d431', + clientSecret: 'sjhdkhfrz6yc9LrRRIPimE9h53jADLccXTykHCcA6eEoFR4rXQg', + audienceId: '34893', + audienceType: 'madid', + }, + ID: 'iwehr83843', + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/customerio/processor/data.ts b/test/integrations/destinations/customerio/processor/data.ts new file mode 100644 index 0000000000..5bbbfe7b10 --- /dev/null +++ b/test/integrations/destinations/customerio/processor/data.ts @@ -0,0 +1,8278 @@ +export const data = [ + { + name: 'customerio', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + type: 'identify', + userId: 'cio_1234', + integrations: { + All: true, + }, + traits: { + email: 'updated_email@example.com', + id: 'updated-id-value', + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + email: 'updated_email@example.com', + id: 'updated-id-value', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/cio_1234', + userId: 'cio_1234', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + user_properties: { + prop1: 'val1', + prop2: 'val2', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + 'dot.name': 'Arnab Pal', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'apiKey not found in Configs', + statTags: { + destType: 'CUSTOMERIO', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + user_properties: { + prop1: 'val1', + prop2: 'val2', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + 'dot.name': 'Arnab Pal', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + _timestamp: 1571043797, + anonymous_id: '123456', + city: 'NY', + state: 'CA', + street: '', + prop1: 'val1', + prop2: 'val2', + country: 'USA', + postalCode: 712136, + email: 'test@gmail.com', + 'dot.name': 'Arnab Pal', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/123456', + userId: '123456', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + user_properties: { + prop1: 'val1', + prop2: 'val2', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'anon-id', + 'dot.name': 'Arnab Pal', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'userId or email is not present', + statTags: { + destType: 'CUSTOMERIO', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + user_properties: { + prop1: 'val1', + prop2: 'val2', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + 'dot.name': 'Arnab Pal', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + _timestamp: 1571043797, + anonymous_id: '123456', + city: 'NY', + country: 'USA', + 'dot.name': 'Arnab Pal', + email: 'test@gmail.com', + postalCode: 712136, + prop1: 'val1', + prop2: 'val2', + state: 'CA', + street: '', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/test@gmail.com', + userId: '123456', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'page', + data: { + url: 'www.rudderlabs.com', + path: '/test', + search: 'abc', + referrer: 'Rudder', + title: 'Test Page', + }, + timestamp: 1571051718, + name: 'ApplicationLoaded', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + event: 'test track event', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'test track event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '', + event: 'test track event', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'test track event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/test@rudderstack.com/events', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '', + event: 'test track event', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + anonymous_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'test track event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/events', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '7e32188a4dab669f', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.torpedolabs.wynn.wscci.dev', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + token: 'abcxyz', + }, + library: { + name: 'com.rudderlabs.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + event: 'Application Installed', + integrations: { + All: true, + }, + messageId: '1578564113557-af022c68-429e-4af4-b99b-2b9174056383', + properties: { + review_id: 'some_review_id', + product_id: 'some_product_id_a', + rating: 2, + review_body: 'Some Review Body', + }, + userId: '12345', + originalTimestamp: '2020-01-09T10:01:53.558Z', + type: 'track', + sentAt: '2020-01-09T10:02:03.257Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + review_body: 'Some Review Body', + rating: 2, + review_id: 'some_review_id', + last_used: 1578564113, + platform: 'android', + id: 'abcxyz', + product_id: 'some_product_id_a', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/devices', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '7e32188a4dab669f', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.torpedolabs.wynn.wscci.dev', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + token: 'abcxyz', + }, + library: { + name: 'com.rudderlabs.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + event: 'Application Uninstalled', + integrations: { + All: true, + }, + messageId: '1578564113557-af022c68-429e-4af4-b99b-2b9174056383', + properties: { + review_id: 'some_review_id', + product_id: 'some_product_id_a', + rating: 2, + review_body: 'Some Review Body', + }, + userId: '12345', + originalTimestamp: '2020-01-09T10:01:53.558Z', + type: 'track', + sentAt: '2020-01-09T10:02:03.257Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/devices/abcxyz', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + event: 'Application Uninstalled', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/devices/somel', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Uninstalled', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: + 'https://track.customer.io/api/v1/customers/test@rudderstack.com/devices/somel', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Uninstalled', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'userId/email or device_token not present', + statTags: { + destType: 'CUSTOMERIO', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + id: 'somel', + last_used: 1571051718, + platform: 'mobile', + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/test@rudderstack.com/devices', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + anonymous_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + name: 'Application Installed', + timestamp: 1571051718, + type: 'event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/events', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 16', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + last_used: 1571051718, + user_time_spent: 50000, + platform: 'mobile', + id: 'somel', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/devices', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 17', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'Application Installed', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 18', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Opened', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'Application Opened', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 19', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'sample_device_token', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Opened', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + last_used: 1571051718, + user_time_spent: 50000, + platform: 'mobile', + id: 'sample_device_token', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/devices', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 20', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'sample_device_token', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Uninstalled', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: + 'https://track.customer.io/api/v1/customers/12345/devices/sample_device_token', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 21', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + user_properties: { + prop1: 'val1', + prop2: 'val2', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + _timestamp: 1571043797, + anonymous_id: '123456', + city: 'NY', + state: 'CA', + street: '', + prop1: 'val1', + prop2: 'val2', + country: 'USA', + postalCode: 712136, + email: 'test@gmail.com', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/123456', + userId: '123456', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 22', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'page', + data: { + url: 'www.rudderlabs.com', + path: '/test', + search: 'abc', + referrer: 'Rudder', + title: 'Test Page', + }, + timestamp: 1571051718, + name: 'ApplicationLoaded', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 23', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + event: 'test track event', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'test track event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 24', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '', + event: 'test track event', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'test track event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/test@rudderstack.com/events', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 25', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '', + event: 'test track event', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + anonymous_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'test track event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/events', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 26', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '7e32188a4dab669f', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.torpedolabs.wynn.wscci.dev', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + token: 'abcxyz', + }, + library: { + name: 'com.rudderlabs.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + event: 'Application Installed', + integrations: { + All: true, + }, + messageId: '1578564113557-af022c68-429e-4af4-b99b-2b9174056383', + properties: { + review_id: 'some_review_id', + product_id: 'some_product_id_a', + rating: 2, + review_body: 'Some Review Body', + }, + userId: '12345', + originalTimestamp: '2020-01-09T10:01:53.558Z', + type: 'track', + sentAt: '2020-01-09T10:02:03.257Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + review_body: 'Some Review Body', + rating: 2, + review_id: 'some_review_id', + last_used: 1578564113, + platform: 'android', + id: 'abcxyz', + product_id: 'some_product_id_a', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/devices', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 27', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '7e32188a4dab669f', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.torpedolabs.wynn.wscci.dev', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + token: 'abcxyz', + }, + library: { + name: 'com.rudderlabs.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '7e32188a4dab669f', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; Android SDK built for x86 Build/PSR1.180720.075)', + }, + event: 'Application Uninstalled', + integrations: { + All: true, + }, + messageId: '1578564113557-af022c68-429e-4af4-b99b-2b9174056383', + properties: { + review_id: 'some_review_id', + product_id: 'some_product_id_a', + rating: 2, + review_body: 'Some Review Body', + }, + userId: '12345', + originalTimestamp: '2020-01-09T10:01:53.558Z', + type: 'track', + sentAt: '2020-01-09T10:02:03.257Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/devices/abcxyz', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 28', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + event: 'Application Uninstalled', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/devices/somel', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 29', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Uninstalled', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'userId/email or device_token not present', + statTags: { + destType: 'CUSTOMERIO', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 30', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + id: 'somel', + last_used: 1571051718, + platform: 'mobile', + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + }, + FORM: {}, + }, + files: {}, + endpoint: + 'https://track-eu.customer.io/api/v1/customers/test@rudderstack.com/devices', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 31', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + anonymous_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + data: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + name: 'Application Installed', + timestamp: 1571051718, + type: 'event', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/events', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 32', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'somel', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + last_used: 1571051718, + user_time_spent: 50000, + platform: 'mobile', + id: 'somel', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/devices', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 33', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Installed', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'Application Installed', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 34', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Opened', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'event', + data: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + user_time_spent: 50000, + }, + timestamp: 1571051718, + name: 'Application Opened', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 35', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'sample_device_token', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Opened', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + device: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + last_used: 1571051718, + user_time_spent: 50000, + platform: 'mobile', + id: 'sample_device_token', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track-eu.customer.io/api/v1/customers/12345/devices', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'PUT', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 36', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'mobile', + context: { + device: { + name: 'test android', + id: 'sample_device_id', + model: 'some_model_device', + type: 'mobile', + token: 'sample_device_token', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: 'Application Uninstalled', + userId: '12345', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: {}, + FORM: {}, + }, + files: {}, + endpoint: + 'https://track-eu.customer.io/api/v1/customers/12345/devices/sample_device_token', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'DELETE', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 37', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: + 'https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v1/events', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + data: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50, + }, + anonymous_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + name: 'https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-s', + type: 'event', + timestamp: 1571051718, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 38', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: + 'https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v1/customers/test@rudderstack.com/events', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + data: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50, + }, + name: 'https://www.stoodi.com.br/exershgcios/upe/2019/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/', + type: 'event', + timestamp: 1571051718, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 39', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'screen', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: + 'https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v1/events', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + data: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + anonymous_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + name: 'Viewed https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-q Screen', + type: 'event', + timestamp: 1571051718, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 40', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'screen', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + event: + 'https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v1/customers/test@rudderstack.com/events', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + data: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + name: 'Viewed https://www.stoodi.com.br/exercicios/upe/2016/questao/gregorio-de-matos-poeta-baiano-que-viveu-no-seculo-xvi/ Screen', + type: 'event', + timestamp: 1571051718, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 41', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'dummy-100-anon', + channel: 'mobile', + context: { + app: { + build: '173', + name: 'MyWallSt Debug', + namespace: 'com.rubicoin.Invest', + version: '6.2', + }, + device: { + attTrackingStatus: 0, + id: '6fdb629d-4f18-4f3e-943a-3f6f482b331e', + manufacturer: 'Apple', + model: 'iPhone', + name: "Ales' iPhone", + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.0.19', + }, + locale: 'en-DE', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '14.8', + }, + screen: { + density: 3, + height: 375, + width: 812, + }, + timezone: 'Europe/Prague', + traits: { + anonymousId: '6fdb629d-4f18-4f3e-943a-3f6f482b331e', + userId: '6a540d50-c4dc-4694-beca-d16de113a1c4-1618384106.8700438', + }, + }, + event: 'Home: Viewed', + integrations: { + All: true, + }, + messageId: '1632314412-e724167f-13bd-455b-943d-dd765a7810fe', + originalTimestamp: '2021-09-22T12:40:12.220Z', + properties: {}, + rudderId: '782cdb50-e2b9-45fc-9d22-07fe792dcfba', + sentAt: '2021-09-22T12:40:14.453Z', + type: 'track', + userId: 'dummy-user-id-100', + }, + destination: { + Config: { + datacenter: 'US', + siteID: 'abc', + apiKey: 'xyz', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v1/customers/dummy-user-id-100/events', + headers: { + Authorization: 'Basic YWJjOnh5eg==', + }, + params: {}, + body: { + JSON: { + data: {}, + name: 'Home: Viewed', + type: 'event', + timestamp: 1632314412, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'dummy-user-id-100', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 42', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'dummy-100-anon', + userId: 'dummy-user-id-100', + integrations: { + All: true, + }, + traits: { + email: 'test@gmail.com', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + datacenter: 'EU', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: 'https://track-eu.customer.io/api/v1/customers/dummy-user-id-100', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + email: 'test@gmail.com', + _timestamp: 1571043797, + anonymous_id: 'dummy-100-anon', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'dummy-user-id-100', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 43', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'sources', + context: { + externalId: [ + { + id: 'xaviercharles@hotmail.com', + identifierType: 'email', + type: 'CUSTOMERIO-customers', + }, + ], + mappedToDestination: 'true', + sources: { + batch_id: '3d6f7aa8-9b70-4759-970d-212e6714ad22', + job_id: '1zDgnw7ZmHWR7gtY4niHYysL3zS/Syncher', + job_run_id: 'c5shebbh9jqg10k8d21g', + task_id: 'tt_10_rows', + task_run_id: 'c5shebbh9jqg10k8d220', + version: 'release.v1.6.8', + }, + }, + messageId: 'd82a45e1-5a27-4c1d-af89-83bdbc6139d0', + originalTimestamp: '2021-10-27T09:09:56.673Z', + receivedAt: '2021-10-27T09:09:56.187Z', + recordId: '3', + request_ip: '10.1.85.177', + rudderId: '5b19a81b-df60-4ccd-abf0-fcfe2b7db054', + sentAt: '2021-10-27T09:09:56.673Z', + timestamp: '2021-10-27T09:09:56.186Z', + traits: { + last_name: 'xavier', + first_name: 'charles', + }, + type: 'identify', + userId: 'xaviercharles@hotmail.com', + }, + destination: { + ID: '1zgXcyv272oZA8HWqe7zInhJjPL', + Name: 'ere', + DestinationDefinition: { + ID: '1iVQr671C0E8MVpzvCEegsLM2J5', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU'], + web: ['useNativeSDK'], + }, + excludeKeys: [], + includeKeys: ['apiKey', 'siteID', 'datacenterEU'], + saveDestinationResponse: true, + secretKeys: [], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + ], + supportsVisualMapper: true, + transformAt: 'processor', + }, + ResponseRules: null, + }, + Config: { + apiKey: 'a292d85ac36de15fc219', + datacenter: 'US', + siteID: 'eead090ab9e2e35004dc', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: 'https://track.customer.io/api/v1/customers/xaviercharles@hotmail.com', + headers: { + Authorization: 'Basic ZWVhZDA5MGFiOWUyZTM1MDA0ZGM6YTI5MmQ4NWFjMzZkZTE1ZmMyMTk=', + }, + params: {}, + body: { + JSON: { + last_name: 'xavier', + first_name: 'charles', + email: 'xaviercharles@hotmail.com', + _timestamp: 1635325796, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'xaviercharles@hotmail.com', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 44', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'sources', + context: { + externalId: [ + { + id: 'xaviercharles', + identifierType: 'id', + type: 'CUSTOMERIO-customers', + }, + ], + mappedToDestination: 'true', + sources: { + batch_id: '3d6f7aa8-9b70-4759-970d-212e6714ad22', + job_id: '1zDgnw7ZmHWR7gtY4niHYysL3zS/Syncher', + job_run_id: 'c5shebbh9jqg10k8d21g', + task_id: 'tt_10_rows', + task_run_id: 'c5shebbh9jqg10k8d220', + version: 'release.v1.6.8', + }, + }, + messageId: 'd82a45e1-5a27-4c1d-af89-83bdbc6139d0', + originalTimestamp: '2021-10-27T09:09:56.673Z', + receivedAt: '2021-10-27T09:09:56.187Z', + recordId: '3', + request_ip: '10.1.85.177', + rudderId: '5b19a81b-df60-4ccd-abf0-fcfe2b7db054', + sentAt: '2021-10-27T09:09:56.673Z', + traits: { + last_name: 'xavier', + first_name: 'charles', + }, + type: 'identify', + userId: 'xaviercharles', + }, + destination: { + ID: '1zgXcyv272oZA8HWqe7zInhJjPL', + Name: 'ere', + DestinationDefinition: { + ID: '1iVQr671C0E8MVpzvCEegsLM2J5', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU'], + web: ['useNativeSDK'], + }, + excludeKeys: [], + includeKeys: ['apiKey', 'siteID', 'datacenterEU'], + saveDestinationResponse: true, + secretKeys: [], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + ], + supportsVisualMapper: true, + transformAt: 'processor', + }, + ResponseRules: null, + }, + Config: { + apiKey: 'a292d85ac36de15fc219', + datacenter: 'US', + siteID: 'eead090ab9e2e35004dc', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: 'https://track.customer.io/api/v1/customers/xaviercharles', + headers: { + Authorization: 'Basic ZWVhZDA5MGFiOWUyZTM1MDA0ZGM6YTI5MmQ4NWFjMzZkZTE1ZmMyMTk=', + }, + params: {}, + body: { + JSON: { + last_name: 'xavier', + first_name: 'charles', + id: 'xaviercharles', + _timestamp: 1635325796, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'xaviercharles', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 45', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'Application Opened', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + timestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:35:30.556+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 46', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'Application Opened', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:39:04.424+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + timestamp: '2022-01-10T20:39:03.955+05:30', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/events', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + data: { + from_background: false, + }, + name: 'Application Opened', + type: 'event', + timestamp: 1641827343, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 47', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + }, + }, + event: 'Application Opened', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:41:30.970+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 48', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'Application Opened', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:44:52.784+05:30', + request_ip: '[::1]', + rudderId: '0aef312c-0dc0-4a49-b613-4f33fb4e9b46', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 49', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'Application Opened', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + timestamp: '2022-01-10T10:00:26.513Z', + receivedAt: '2022-01-10T20:47:36.180+05:30', + request_ip: '[::1]', + rudderId: '0aef312c-0dc0-4a49-b613-4f33fb4e9b46', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 50', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'device_token_registered', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:49:05.795+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 51', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'device_token_registered', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:50:17.090+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + timestamp: '2022-01-10T20:50:16.621+05:30', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/events', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + data: { + from_background: false, + }, + name: 'device_token_registered', + type: 'event', + timestamp: 1641828016, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 52', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + }, + }, + event: 'device_token_registered', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:52:19.147+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + timestamp: '2022-01-10T20:52:18.678+05:30', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641828138, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 53', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'device_token_registered', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:53:43.680+05:30', + request_ip: '[::1]', + rudderId: '0aef312c-0dc0-4a49-b613-4f33fb4e9b46', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 54', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'iOS', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + }, + event: 'device_token_registered', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + receivedAt: '2022-01-10T20:55:03.845+05:30', + request_ip: '[::1]', + rudderId: '0aef312c-0dc0-4a49-b613-4f33fb4e9b46', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 55', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'check for ipados apple family and default it to ios', + message: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'zx_userid_missing', + namespace: 'org.reactjs.native.example.zx-userid-missing', + version: '1.0', + }, + device: { + attTrackingStatus: 0, + id: '5d727a3e-a72b-4d00-8078-669c1494791d', + manufacturer: 'Apple', + model: 'iPhone', + name: 'iPhone 13', + token: 'deviceToken', + type: 'ipados', + }, + library: { + name: 'rudder-ios-library', + version: '1.3.1', + }, + locale: 'en-US', + network: { + bluetooth: false, + carrier: 'unavailable', + cellular: false, + wifi: true, + }, + os: { + name: 'iOS', + version: '15.2', + }, + screen: { + density: 3, + height: 390, + width: 844, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5d727a3e-a72b-4d00-8078-669c1494791d', + email: 'sofia@gmail.com', + login_status: 'Authenticated', + name: 'Sofia', + phone_verified: 1, + selected_city: '', + selected_lat: 0, + selected_long: 0, + selected_neighborhood: '', + selected_number: '', + selected_postal_code: '', + selected_state: '', + selected_street: '', + signed_up_for_newsletters: 0, + }, + }, + event: 'Application Opened', + integrations: { + All: true, + }, + messageId: '1641808826-28d23237-f4f0-4f65-baa2-99141e422a8f', + originalTimestamp: '2022-01-10T10:00:26.513Z', + properties: { + from_background: false, + }, + receivedAt: '2022-01-10T20:41:30.970+05:30', + request_ip: '[::1]', + rudderId: '423cdf83-0448-4a99-b14d-36fcc63e6ea0', + sentAt: '2022-01-10T10:00:26.982Z', + type: 'track', + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'DESAU SAI', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'DESU SAI', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: + 'https://track.customer.io/api/v1/customers/e91e0378-63fe-11ec-82ac-0a028ee659c3/devices', + headers: { + Authorization: 'Basic REVTVSBTQUk6REVTQVUgU0FJ', + }, + params: {}, + body: { + JSON: { + device: { + from_background: false, + id: 'deviceToken', + platform: 'ios', + last_used: 1641808826, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e91e0378-63fe-11ec-82ac-0a028ee659c3', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 56', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with identify action', + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.0-beta.2', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.0-beta.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36', + }, + groupId: 'group@1', + integrations: { + All: true, + }, + traits: { + domainNames: 'rudderstack.com', + email: 'help@rudderstack.com', + name: 'rudderstack', + action: 'identify', + }, + type: 'group', + userId: 'user@1', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'identify', + attributes: { + name: 'rudderstack', + email: 'help@rudderstack.com', + domainNames: 'rudderstack.com', + }, + identifiers: { + object_id: 'group@1', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: 'user@1', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: 'user@1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 57', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with delete action', + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.0-beta.2', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.0-beta.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36', + }, + groupId: 'group@1', + integrations: { + All: true, + }, + traits: { + domainNames: 'rudderstack.com', + email: 'help@rudderstack.com', + name: 'rudderstack', + action: 'delete', + }, + type: 'group', + userId: 'user@1', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'delete', + attributes: { + name: 'rudderstack', + email: 'help@rudderstack.com', + domainNames: 'rudderstack.com', + }, + identifiers: { + object_id: 'group@1', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: 'user@1', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: 'user@1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 58', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with add_relationships action', + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.0-beta.2', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.0-beta.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + email: 'test@rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36', + }, + groupId: 'group@1', + integrations: { + All: true, + }, + traits: { + domainNames: 'rudderstack.com', + email: 'help@rudderstack.com', + name: 'rudderstack', + action: 'add_relationships', + }, + type: 'group', + userId: 'user@1', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'add_relationships', + attributes: { + name: 'rudderstack', + email: 'help@rudderstack.com', + domainNames: 'rudderstack.com', + }, + identifiers: { + object_id: 'group@1', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: 'user@1', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: 'user@1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 59', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with delete_relationships action', + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.0-beta.2', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.0-beta.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + email: 'test@rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36', + }, + groupId: 'group@1', + integrations: { + All: true, + }, + traits: { + domainNames: 'rudderstack.com', + email: 'help@rudderstack.com', + name: 'rudderstack', + action: 'delete_relationships', + }, + type: 'group', + userId: 'user@1', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'delete_relationships', + attributes: { + name: 'rudderstack', + email: 'help@rudderstack.com', + domainNames: 'rudderstack.com', + }, + identifiers: { + object_id: 'group@1', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: 'user@1', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: 'user@1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 60', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with userId and groupId as an integer', + message: { + type: 'group', + header: { + 'content-type': 'application/json; charset=utf-8', + }, + sentAt: '2023-03-28T09:36:49.882Z', + traits: { + city: 'Frankfurt', + name: 'rudder test', + state: 'Hessen', + isFake: true, + address: 'Solmsstraße 83', + country: 'DE', + website: 'http://www.rudderstack.com', + industry: 'Waste and recycling', + postcode: '60486', + whiteLabel: 'rudderlabs', + maxNbJobBoards: 2, + organisationId: 306, + pricingPackage: 'packageExpert', + dateProTrialEnd: '2022-08-31T00:00:00+00:00', + isProTrialActive: true, + datetimeRegistration: '2020-07-01T10:23:41+00:00', + isPersonnelServiceProvider: false, + }, + userId: 432, + channel: 'server', + context: { + library: { + name: 'rudder-analytics-php', + version: '2.0.1', + consumer: 'LibCurl', + }, + }, + groupId: 306, + rudderId: 'f5b46a12-2dab-4e24-a127-7316eed414fc', + messageId: '7032394c-e813-4737-bf52-622dbcefe849', + receivedAt: '2023-03-28T09:36:48.296Z', + request_ip: '18.195.235.225', + originalTimestamp: '2023-03-28T09:36:49.882Z', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'identify', + attributes: { + city: 'Frankfurt', + name: 'rudder test', + state: 'Hessen', + isFake: true, + address: 'Solmsstraße 83', + country: 'DE', + website: 'http://www.rudderstack.com', + industry: 'Waste and recycling', + postcode: '60486', + whiteLabel: 'rudderlabs', + maxNbJobBoards: 2, + organisationId: 306, + pricingPackage: 'packageExpert', + dateProTrialEnd: '2022-08-31T00:00:00+00:00', + isProTrialActive: true, + datetimeRegistration: '2020-07-01T10:23:41+00:00', + isPersonnelServiceProvider: false, + }, + identifiers: { + object_id: '306', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: '432', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: '432', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 61', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with userId in email format ', + message: { + type: 'group', + header: { + 'content-type': 'application/json; charset=utf-8', + }, + sentAt: '2023-03-28T09:36:49.882Z', + traits: { + city: 'Frankfurt', + name: 'rudder test', + state: 'Hessen', + isFake: true, + address: 'Solmsstraße 83', + country: 'DE', + website: 'http://www.rudderstack.com', + industry: 'Waste and recycling', + postcode: '60486', + whiteLabel: 'rudderlabs', + maxNbJobBoards: 2, + organisationId: 306, + pricingPackage: 'packageExpert', + dateProTrialEnd: '2022-08-31T00:00:00+00:00', + isProTrialActive: true, + datetimeRegistration: '2020-07-01T10:23:41+00:00', + isPersonnelServiceProvider: false, + }, + userId: 'abc@xyz.com', + channel: 'server', + context: { + library: { + name: 'rudder-analytics-php', + version: '2.0.1', + consumer: 'LibCurl', + }, + }, + groupId: 306, + rudderId: 'f5b46a12-2dab-4e24-a127-7316eed414fc', + messageId: '7032394c-e813-4737-bf52-622dbcefe849', + receivedAt: '2023-03-28T09:36:48.296Z', + request_ip: '18.195.235.225', + originalTimestamp: '2023-03-28T09:36:49.882Z', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'US', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'identify', + attributes: { + city: 'Frankfurt', + name: 'rudder test', + state: 'Hessen', + isFake: true, + address: 'Solmsstraße 83', + country: 'DE', + website: 'http://www.rudderstack.com', + industry: 'Waste and recycling', + postcode: '60486', + whiteLabel: 'rudderlabs', + maxNbJobBoards: 2, + organisationId: 306, + pricingPackage: 'packageExpert', + dateProTrialEnd: '2022-08-31T00:00:00+00:00', + isProTrialActive: true, + datetimeRegistration: '2020-07-01T10:23:41+00:00', + isPersonnelServiceProvider: false, + }, + identifiers: { + object_id: '306', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + email: 'abc@xyz.com', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: 'abc@xyz.com', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 62', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + description: 'successful group call with eu as data center', + message: { + type: 'group', + header: { + 'content-type': 'application/json; charset=utf-8', + }, + sentAt: '2023-03-28T09:36:49.882Z', + traits: { + city: 'Frankfurt', + name: 'rudder test', + state: 'Hessen', + isFake: true, + address: 'Solmsstraße 83', + country: 'DE', + website: 'http://www.rudderstack.com', + industry: 'Waste and recycling', + postcode: '60486', + whiteLabel: 'rudderlabs', + maxNbJobBoards: 2, + organisationId: 306, + pricingPackage: 'packageExpert', + dateProTrialEnd: '2022-08-31T00:00:00+00:00', + isProTrialActive: true, + datetimeRegistration: '2020-07-01T10:23:41+00:00', + isPersonnelServiceProvider: false, + }, + userId: 432, + channel: 'server', + context: { + library: { + name: 'rudder-analytics-php', + version: '2.0.1', + consumer: 'LibCurl', + }, + }, + groupId: 306, + rudderId: 'f5b46a12-2dab-4e24-a127-7316eed414fc', + messageId: '7032394c-e813-4737-bf52-622dbcefe849', + receivedAt: '2023-03-28T09:36:48.296Z', + request_ip: '18.195.235.225', + originalTimestamp: '2023-03-28T09:36:49.882Z', + }, + destination: { + ID: '23Mi76khsFhY7bh9ZyRcvR3pHDt', + Name: 'Customer IO Dev', + DestinationDefinition: { + ID: '23MgSlHXsPLsiH7SbW7IzCP32fn', + Name: 'CUSTOMERIO', + DisplayName: 'Customer IO', + Config: { + destConfig: { + defaultConfig: ['apiKey', 'siteID', 'datacenterEU', 'deviceTokenEventName'], + web: ['useNativeSDK', 'blackListedEvents', 'whiteListedEvents'], + }, + excludeKeys: [], + includeKeys: [ + 'apiKey', + 'siteID', + 'datacenterEU', + 'blackListedEvents', + 'whiteListedEvents', + ], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: {}, + }, + Config: { + apiKey: 'ef32c3f60fb98f39ef35', + datacenter: 'EU', + deviceTokenEventName: 'device_token_registered', + siteID: 'c0efdbd20b9fbe24a7e2', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track-eu.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic YzBlZmRiZDIwYjlmYmUyNGE3ZTI6ZWYzMmMzZjYwZmI5OGYzOWVmMzU=', + }, + params: {}, + body: { + XML: {}, + FORM: {}, + JSON: { + type: 'object', + action: 'identify', + attributes: { + city: 'Frankfurt', + name: 'rudder test', + state: 'Hessen', + isFake: true, + address: 'Solmsstraße 83', + country: 'DE', + website: 'http://www.rudderstack.com', + industry: 'Waste and recycling', + postcode: '60486', + whiteLabel: 'rudderlabs', + maxNbJobBoards: 2, + organisationId: 306, + pricingPackage: 'packageExpert', + dateProTrialEnd: '2022-08-31T00:00:00+00:00', + isProTrialActive: true, + datetimeRegistration: '2020-07-01T10:23:41+00:00', + isPersonnelServiceProvider: false, + }, + identifiers: { + object_id: '306', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: '432', + }, + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + userId: '432', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 63', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'page', + data: { + url: 'www.rudderlabs.com', + path: '/test', + search: 'abc', + referrer: 'Rudder', + title: 'Test Page', + }, + timestamp: 1571051718, + name: 'www.rudderlabs.com', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 64', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'page', + data: { + path: '/test', + search: 'abc', + referrer: 'Rudder', + title: 'Test Page', + }, + timestamp: 1571051718, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'customerio', + description: 'Test 65', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + userId: '12345', + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + datacenter: 'US', + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + type: 'page', + timestamp: 1571051718, + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + userId: '12345', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/customerio/router/data.ts b/test/integrations/destinations/customerio/router/data.ts new file mode 100644 index 0000000000..9a34377714 --- /dev/null +++ b/test/integrations/destinations/customerio/router/data.ts @@ -0,0 +1,436 @@ +export const data = [ + { + name: 'customerio', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + user_properties: { + prop1: 'val1', + prop2: 'val2', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + 'dot.name': 'Arnab Pal', + address: { + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + metadata: { + jobId: 1, + }, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.0-beta.2', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.0-beta.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36', + }, + groupId: 'group@1', + integrations: { + All: true, + }, + traits: { + domainNames: 'rudderstack.com', + email: 'help@rudderstack.com', + name: 'rudderstack', + action: 'identify', + }, + type: 'group', + userId: 'user@1', + }, + metadata: { + jobId: 3, + }, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.0-beta.2', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.0-beta.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36', + }, + groupId: 'group@1', + integrations: { + All: true, + }, + traits: { + domainNames: 'rudderstack.com', + email: 'help@rudderstack.com', + name: 'rudderstack', + action: 'delete', + }, + type: 'group', + userId: 'user@1', + }, + metadata: { + jobId: 4, + }, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + destType: 'customerio', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'PUT', + endpoint: 'https://track.customer.io/api/v1/customers/123456', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + anonymous_id: '123456', + city: 'NY', + country: 'USA', + postalCode: 712136, + state: 'CA', + street: '', + email: 'test@gmail.com', + 'dot.name': 'Arnab Pal', + prop1: 'val1', + prop2: 'val2', + _timestamp: 1571043797, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + statusCode: 200, + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v1/customers/12345/events', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + }, + params: {}, + body: { + JSON: { + data: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + name: 'ApplicationLoaded', + type: 'page', + timestamp: 1571051718, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + statusCode: 200, + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://track.customer.io/api/v2/batch', + headers: { + Authorization: 'Basic NDZiZTU0NzY4ZTdkNDlhYjI2Mjg6ZHVtbXlBcGlLZXk=', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + FORM: {}, + XML: {}, + JSON: { + batch: [ + { + type: 'object', + action: 'identify', + attributes: { + name: 'rudderstack', + email: 'help@rudderstack.com', + domainNames: 'rudderstack.com', + }, + identifiers: { + object_id: 'group@1', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: 'user@1', + }, + }, + ], + }, + { + type: 'object', + action: 'delete', + attributes: { + name: 'rudderstack', + email: 'help@rudderstack.com', + domainNames: 'rudderstack.com', + }, + identifiers: { + object_id: 'group@1', + object_type_id: '1', + }, + cio_relationships: [ + { + identifiers: { + id: 'user@1', + }, + }, + ], + }, + ], + }, + JSON_ARRAY: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 3, + }, + { + jobId: 4, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + datacenterEU: false, + siteID: '46be54768e7d49ab2628', + apiKey: 'dummyApiKey', + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/facebook_offline_conversions/processor/data.ts b/test/integrations/destinations/facebook_offline_conversions/processor/data.ts new file mode 100644 index 0000000000..26d9a5e2f9 --- /dev/null +++ b/test/integrations/destinations/facebook_offline_conversions/processor/data.ts @@ -0,0 +1,1798 @@ +export const data = [ + { + name: 'facebook_offline_conversions', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + traits: { + age: 23, + email: 'adc@test.com', + firstname: 'Test', + birthday: '2022-05-13T12:51:01.470Z', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'Product Searched', + originalTimestamp: '2020-09-22T14:42:44.724Z', + timestamp: '2022-09-22T20:12:44.757+05:30', + userId: 'user@1', + }, + destination: { + Config: { + accessToken: 'ABC...', + }, + }, + metadata: { + secret: { + access_token: 'ABC', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + secret: { + access_token: 'ABC', + }, + }, + statusCode: 400, + error: 'Message Type is not present. Aborting message.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_OFFLINE_CONVERSIONS', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + traits: { + age: 23, + email: 'adc@test.com', + firstname: 'Test', + birthday: '2022-05-13T12:51:01.470Z', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'Product Searched', + type: 'identify', + originalTimestamp: '2020-09-22T14:42:44.724Z', + timestamp: '2022-09-22T20:12:44.757+05:30', + userId: 'user@1', + }, + destination: { + Config: { + accessToken: 'ABC...', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Message type identify not supported.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_OFFLINE_CONVERSIONS', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + abc: '1234', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'product searched', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + { + from: 'AddToWishlist', + to: '506289934669334', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Please Map Your Standard Events With Event Set Ids', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'FACEBOOK_OFFLINE_CONVERSIONS', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + abc: '1234', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Button Clicked', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Please Map Your Standard Events With Event Set Ids', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'FACEBOOK_OFFLINE_CONVERSIONS', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Product Viewed', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/1166826033904512/events?upload_tag=rudderstack&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Viewed%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Product Searched', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/582603376981640/events?upload_tag=rudderstack&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22Search%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/506289934669334/events?upload_tag=rudderstack&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22Search%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Product Searched', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/582603376981640/events?upload_tag=rudderstack&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/506289934669334/events?upload_tag=rudderstack&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/1166826033904512/events?upload_tag=rudderstack&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Product Searched', + properties: { + upload_tag: 'test campaign', + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/582603376981640/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/506289934669334/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/1166826033904512/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22order_id%22%3A%225241735%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Product%20Searched%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22GBP%22%2C%22value%22%3A31.98%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%225241735%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22ViewContent%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + birthday: '2005-01-01T23:28:56.782Z', + firstName: 'test', + name: 'test rudderlabs', + address: { + city: 'kalkata', + state: 'west bangal', + country: 'india', + zip: '123456', + }, + phone: '9886775586', + gender: 'male', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + device: { + advertisingId: 'apple@123', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Cart Checkout', + properties: { + upload_tag: 'test campaign', + order_id: '485893487985894998', + value: 100, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'IND', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/1148872185708962/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22doby%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobm%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobd%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22phone%22%3A%5B%2274a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615%22%5D%2C%22gen%22%3A%220d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf%22%2C%22fn%22%3A%229f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08%22%2C%22ct%22%3A%22375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0%22%2C%22zip%22%3A%5B%228d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92%22%5D%2C%22madid%22%3A%22c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22ln%22%3A%22dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22order_id%22%3A%22485893487985894998%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Cart%20Checkout%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22phone%22%3A%2274a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615%22%2C%22gen%22%3A%220d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf%22%2C%22fn%22%3A%229f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08%22%2C%22ct%22%3A%22375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0%22%2C%22zip%22%3A%228d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92%22%2C%22madid%22%3A%22c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%22485893487985894998%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22ln%22%3A%22dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22AddToCart%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + birthday: '2005-01-01T23:28:56.782Z', + firstName: 'test', + name: 'test rudderlabs', + address: { + city: 'kalkata', + state: 'west bangal', + country: 'india', + zip: '123456', + }, + phone: '9886775586', + gender: 'male', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + device: { + advertisingId: 'apple@123', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Cart Checkout', + properties: { + upload_tag: 'test campaign', + order_id: '485893487985894998', + value: 100, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'IND', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: false, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/1148872185708962/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22doby%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobm%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobd%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%22test%40rudderstack.com%22%5D%2C%22phone%22%3A%5B%229886775586%22%5D%2C%22gen%22%3A%22male%22%2C%22fn%22%3A%22test%22%2C%22ct%22%3A%22kalkata%22%2C%22zip%22%3A%5B%22123456%22%5D%2C%22madid%22%3A%22apple%40123%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22ln%22%3A%22rudderlabs%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22order_id%22%3A%22485893487985894998%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Cart%20Checkout%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22email%22%3A%22test%40rudderstack.com%22%2C%22phone%22%3A%229886775586%22%2C%22gen%22%3A%22male%22%2C%22fn%22%3A%22test%22%2C%22ct%22%3A%22kalkata%22%2C%22zip%22%3A%22123456%22%2C%22madid%22%3A%22apple%40123%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%22485893487985894998%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22ln%22%3A%22rudderlabs%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22AddToCart%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_offline_conversions', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + birthday: '2005-01-01T23:28:56.782Z', + firstName: 'test', + name: 'test rudderlabs', + address: { + city: 'kalkata', + state: 'west bangal', + country: 'india', + zip: '123456', + }, + phone: '9886775586', + gender: 'male', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + device: { + advertisingId: 'apple@123', + }, + }, + integrations: { + FacebookOfflineConversions: { + contentType: 'e-commerce', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Cart Checkout', + properties: { + upload_tag: 'test campaign', + order_id: '485893487985894998', + value: 100, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'IND', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + categoryToContent: [ + { + from: '', + to: '', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v16.0/1148872185708962/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22doby%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobm%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobd%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22phone%22%3A%5B%2274a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615%22%5D%2C%22gen%22%3A%220d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf%22%2C%22fn%22%3A%229f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08%22%2C%22ct%22%3A%22375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0%22%2C%22zip%22%3A%5B%228d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92%22%5D%2C%22madid%22%3A%22c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22ln%22%3A%22dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22order_id%22%3A%22485893487985894998%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Cart%20Checkout%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22phone%22%3A%2274a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615%22%2C%22gen%22%3A%220d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf%22%2C%22fn%22%3A%229f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08%22%2C%22ct%22%3A%22375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0%22%2C%22zip%22%3A%228d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92%22%2C%22madid%22%3A%22c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%22485893487985894998%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22ln%22%3A%22dcf000c2386fb76d22cefc0d118a8511bb75999019cd373df52044bccd1bd251%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22AddToCart%22%2C%22content_type%22%3A%22e-commerce%22%7D%5D&access_token=ABC...', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/facebook_offline_conversions/router/data.ts b/test/integrations/destinations/facebook_offline_conversions/router/data.ts new file mode 100644 index 0000000000..7bf984a029 --- /dev/null +++ b/test/integrations/destinations/facebook_offline_conversions/router/data.ts @@ -0,0 +1,705 @@ +export const data = [ + { + name: 'facebook_offline_conversions', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + abc: '1234', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'product searched', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + metadata: { + jobId: 1, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + { + from: 'AddToWishlist', + to: '506289934669334', + }, + ], + isHashRequired: true, + }, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + abc: '1234', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Button Clicked', + properties: { + order_id: '5241735', + value: 31.98, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'GBP', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.2', + }, + traits: { + email: 'test@rudderstack.com', + birthday: '2005-01-01T23:28:56.782Z', + firstName: 'test', + lastName: 'rudderstack', + initial: { + firstName: 'rudderlabs', + }, + address: { + city: 'kalkata', + state: 'west bangal', + country: 'india', + zip: '123456', + }, + phone: '9886775586', + gender: 'male', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.2', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/ecomm_test.html', + referrer: 'http://0.0.0.0:1112/tests/html/', + search: '', + title: 'Fb Offline Conversion Ecommerce Test', + url: 'http://0.0.0.0:1112/tests/html/ecomm_test.html', + }, + device: { + advertisingId: 'apple@123', + }, + }, + type: 'track', + messageId: '9116b734-7e6b-4497-ab51-c16744d4487e', + originalTimestamp: '2022-09-21T12:05:19.394Z', + userId: 'user@1', + event: 'Cart Checkout', + properties: { + upload_tag: 'test campaign', + order_id: '485893487985894998', + value: 100, + revenue: 31.98, + shipping: 4, + coupon: 'APPARELSALE', + currency: 'IND', + products: [ + { + id: 'product-bacon-jam', + category: 'Merch', + brand: '', + }, + { + id: 'product-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + { + id: 'offer-t-shirt', + category: 'Merch', + brand: 'Levis', + }, + ], + }, + }, + metadata: { + jobId: 3, + }, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + destType: 'facebook_offline_conversions', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + error: 'Please Map Your Standard Events With Event Set Ids', + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statTags: { + destType: 'FACEBOOK_OFFLINE_CONVERSIONS', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + { + from: 'AddToWishlist', + to: '506289934669334', + }, + ], + isHashRequired: true, + }, + }, + }, + { + error: 'Please Map Your Standard Events With Event Set Ids', + metadata: [ + { + jobId: 2, + }, + ], + statTags: { + destType: 'FACEBOOK_OFFLINE_CONVERSIONS', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + batched: false, + statusCode: 400, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Viewed', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + { + metadata: [ + { + jobId: 3, + }, + ], + batchedRequest: [ + { + body: { + FORM: {}, + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + }, + endpoint: + 'https://graph.facebook.com/v16.0/1148872185708962/events?upload_tag=test campaign&data=%5B%7B%22match_keys%22%3A%7B%22doby%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobm%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22dobd%22%3A%22f388bc7cd953b951ffdf8e06275d94946dc52f03ed96536497fbe534469d38d6%22%2C%22extern_id%22%3A%22user%401%22%2C%22email%22%3A%5B%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%5D%2C%22phone%22%3A%5B%2274a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615%22%5D%2C%22gen%22%3A%220d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf%22%2C%22ln%22%3A%227fb35d4777487797615cfa7c57724a47ba99152485600ccdb98e3871a6d05b21%22%2C%22fn%22%3A%229f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08%22%2C%22ct%22%3A%22375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0%22%2C%22zip%22%3A%5B%228d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92%22%5D%2C%22madid%22%3A%22c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%7D%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22order_id%22%3A%22485893487985894998%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22quantity%22%3A1%2C%22brand%22%3A%22Levis%22%2C%22category%22%3A%22Merch%22%7D%5D%2C%22custom_data%22%3A%7B%22extern_id%22%3A%22user%401%22%2C%22event_name%22%3A%22Cart%20Checkout%22%2C%22event_time%22%3A1663761919%2C%22currency%22%3A%22IND%22%2C%22value%22%3A100%2C%22email%22%3A%221c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd%22%2C%22phone%22%3A%2274a39482392f83119041d571d5dace439d315faea8214fe8e815c00261b80615%22%2C%22gen%22%3A%220d248e82c62c9386878327d491c762a002152d42ab2c391a31c44d9f62675ddf%22%2C%22ln%22%3A%227fb35d4777487797615cfa7c57724a47ba99152485600ccdb98e3871a6d05b21%22%2C%22fn%22%3A%229f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08%22%2C%22ct%22%3A%22375aba919c30870659093b7ddcf6045ff7a8624dd4dba49ced8981bd4d0666e0%22%2C%22zip%22%3A%228d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92%22%2C%22madid%22%3A%22c20fa16907343eef642d10f0bdb81bf629e6aaf6c906f26eabda079ca9e5ab67%22%2C%22contents%22%3A%5B%7B%22id%22%3A%22product-bacon-jam%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22%22%7D%2C%7B%22id%22%3A%22product-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%2C%7B%22id%22%3A%22offer-t-shirt%22%2C%22category%22%3A%22Merch%22%2C%22brand%22%3A%22Levis%22%7D%5D%2C%22order_id%22%3A%22485893487985894998%22%2C%22upload_tag%22%3A%22test%20campaign%22%2C%22client_user_agent%22%3A%22Mozilla%2F5.0%20(Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_3)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F83.0.4103.97%20Safari%2F537.36%22%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22shipping%22%3A4%2C%22coupon%22%3A%22APPARELSALE%22%7D%2C%22event_source_url%22%3A%22http%3A%2F%2F0.0.0.0%3A1112%2Ftests%2Fhtml%2Fecomm_test.html%22%2C%22event_name%22%3A%22AddToCart%22%2C%22content_type%22%3A%22product%22%7D%5D&access_token=ABC...', + files: {}, + headers: {}, + method: 'POST', + params: {}, + type: 'REST', + version: '1', + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accessToken: 'ABC...', + valueFieldIdentifier: 'properties.price', + eventsToStandard: [ + { + from: 'Product Searched', + to: 'Search', + }, + { + to: 'ViewContent', + from: 'Product Searched', + }, + { + to: 'AddToCart', + from: 'Cart Checkout', + }, + { + to: 'AddPaymentInfo', + from: 'Card Details Added', + }, + { + to: 'Lead', + from: 'Order Completed', + }, + { + to: 'CompleteRegistration', + from: 'Signup', + }, + { + to: 'AddToWishlist', + from: 'Button Clicked', + }, + ], + eventsToIds: [ + { + from: 'Search', + to: '582603376981640', + }, + { + from: 'Search', + to: '506289934669334', + }, + { + from: 'ViewContent', + to: '1166826033904512', + }, + { + from: 'AddToCart', + to: '1148872185708962', + }, + { + from: 'CompleteRegistration', + to: '597443908839411', + }, + { + from: 'Lead', + to: '1024592094903800', + }, + ], + isHashRequired: true, + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/facebook_pixel/processor/data.ts b/test/integrations/destinations/facebook_pixel/processor/data.ts new file mode 100644 index 0000000000..d5d0a8ec96 --- /dev/null +++ b/test/integrations/destinations/facebook_pixel/processor/data.ts @@ -0,0 +1,6061 @@ +export const mockFns = (_) => { + // @ts-ignore + jest.useFakeTimers().setSystemTime(new Date('2023-10-15')); +}; + +export const data = [ + { + name: 'facebook_pixel', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + channel: 'mobile', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: ' aBc@gmail.com ', + address: { + zip: 1234, + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T00:00:00.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + removeExternalId: true, + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08","zp":"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4"},"event_name":"spin_result","event_time":1697221800,"action_source":"app","custom_data":{"additional_bet_index":0,"value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: ' aBc@gmail.com ', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'group', + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Message type group not supported', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + traits: { + name: 'Test', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + properties: { + plan: 'standard plan', + name: 'rudder test', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: + 'For identify events, "Advanced Mapping" configuration must be enabled on the RudderStack dashboard', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + traits: { + name: 'Rudder Test', + email: 'abc@gmail.com', + firstname: 'Rudder', + lastname: 'Test', + phone: 9000000000, + gender: 'female', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + properties: { + plan: 'standard plan', + name: 'rudder test', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: true, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08","ph":"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579","ge":"252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111","ln":"532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25","fn":"2c2ccf28d806f6f9a34b67aa874d2113b7ac1444f1a4092541b8b75b84771747","client_ip_address":"0.0.0.0","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"identify","event_time":1697278611,"event_id":"84e26acc-56a5-4835-8233-591137fca468","action_source":"website"}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + traits: { + name: 'Rudder Test', + email: 'abc@gmail.com', + phone: 9000000000, + address: { + postalCode: 1234, + }, + gender: 'female', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + properties: { + plan: 'standard plan', + name: 'rudder test', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: true, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08","ph":"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579","ge":"252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111","zp":"03ac674216f3e15c761ee1a5e255f067953623c8b388b4459e13f978d7c846f4","client_ip_address":"0.0.0.0","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36","fn":"2c2ccf28d806f6f9a34b67aa874d2113b7ac1444f1a4092541b8b75b84771747","ln":"532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25"},"event_name":"identify","event_time":1697278611,"event_id":"84e26acc-56a5-4835-8233-591137fca468","action_source":"website"}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + email: 'abc@gmail.com', + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","custom_data":{"additional_bet_index":0,"value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + email: 'abc@gmail.com', + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","custom_data":{"additional_bet_index":0,"email":"abc@gmail.com","value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + email: 'abc@gmail.com', + phone: 9000000000, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: 'phone', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","custom_data":{"additional_bet_index":0,"email":"abc@gmail.com","value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + email: 'abc@gmail.com', + phone: 9000000000, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: 'phone', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","custom_data":{"additional_bet_index":0,"email":"abc@gmail.com","phone":"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579","value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + timestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: 'xyz', + search: 'def', + title: 'ghi', + url: 'jkl', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: 'phone', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_ip_address":"0.0.0.0","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Viewed page ApplicationLoaded","event_time":1697278611,"event_source_url":"jkl","event_id":"5e10d13a-bf9a-44bf-b884-43a9e591ea71","action_source":"website","custom_data":{"path":"/abc","referrer":"xyz","search":"def","title":"ghi","url":"jkl"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: 'xyz', + search: 'def', + title: 'ghi', + url: 'jkl', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: 'phone', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_ip_address":"0.0.0.0","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Viewed a page","event_time":1697278611,"event_source_url":"jkl","event_id":"5e10d13a-bf9a-44bf-b884-43a9e591ea71","action_source":"website","custom_data":{"path":"/abc","referrer":"xyz","search":"def","title":"ghi","url":"jkl"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product list viewed', + properties: { + phone: 9000000000, + email: 'abc@gmail.com', + category: 'cat 1', + list_id: '1234', + filters: [ + { + type: 'department', + value: 'beauty', + }, + { + type: 'price', + value: 'under', + }, + ], + sorts: [ + { + type: 'price', + value: 'desc', + }, + ], + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: 'phone', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"phone":"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579","email":"abc@gmail.com","category":"cat 1","list_id":"1234","filters[0].type":"department","filters[0].value":"beauty","filters[1].type":"price","filters[1].value":"under","sorts[0].type":"price","sorts[0].value":"desc","testDimension":true,"testMetric":true,"content_ids":["cat 1"],"content_type":"product_group","contents":[{"id":"cat 1","quantity":1}],"content_category":"cat 1","value":0,"currency":"USD"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product list viewed', + properties: { + phone: 9000000000, + email: 'abc@gmail.com', + category: 'cat 1', + list_id: '1234', + filters: [ + { + type: 'department', + value: 'beauty', + }, + { + type: 'price', + value: 'under', + }, + ], + sorts: [ + { + type: 'price', + value: 'desc', + }, + ], + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"category":"cat 1","list_id":"1234","filters[0].type":"department","filters[0].value":"beauty","filters[1].type":"price","filters[1].value":"under","sorts[0].type":"price","sorts[0].value":"desc","testDimension":true,"testMetric":true,"content_ids":["cat 1"],"content_type":"product_group","contents":[{"id":"cat 1","quantity":1}],"content_category":"cat 1","value":0,"currency":"USD"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product list viewed', + properties: { + email: 'abc@gmail.com', + quantity: 2, + category: 'cat 1', + list_id: '1234', + contentName: 'nutrition', + value: 18.9, + filters: [ + { + type: 'department', + value: 'beauty', + }, + { + type: 'price', + value: 'under', + }, + ], + sorts: [ + { + type: 'price', + value: 'desc', + }, + ], + products: [ + { + product_id: '507f1f77bcf86cd799439011', + productDimension: 'My Product Dimension', + productMetric: 'My Product Metric', + position: 10, + }, + { + product_id: '507f1f77bcf86cdef799439011', + productDimension: 'My Product Dimension1', + productMetric: 'My Product Metric1', + position: -10, + }, + ], + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"quantity":2,"category":"cat 1","list_id":"1234","contentName":"nutrition","value":18.9,"filters[0].type":"department","filters[0].value":"beauty","filters[1].type":"price","filters[1].value":"under","sorts[0].type":"price","sorts[0].value":"desc","products[0].product_id":"507f1f77bcf86cd799439011","products[0].productDimension":"My Product Dimension","products[0].productMetric":"My Product Metric","products[0].position":10,"products[1].product_id":"507f1f77bcf86cdef799439011","products[1].productDimension":"My Product Dimension1","products[1].productMetric":"My Product Metric1","products[1].position":-10,"testDimension":true,"testMetric":true,"content_ids":["507f1f77bcf86cd799439011","507f1f77bcf86cdef799439011"],"content_type":"product","contents":[{"id":"507f1f77bcf86cd799439011","quantity":2},{"id":"507f1f77bcf86cdef799439011","quantity":2}],"content_category":"cat 1","content_name":"nutrition","currency":"USD"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'my product list', + properties: { + email: 'abc@gmail.com', + quantity: 2, + category: 'cat 1', + list_id: '1234', + filters: [ + { + type: 'department', + value: 'beauty', + }, + { + type: 'price', + value: 'under', + }, + ], + sorts: [ + { + type: 'price', + value: 'desc', + }, + ], + products: [ + { + product_id: '507f1f77bcf86cd799439011', + productDimension: 'My Product Dimension', + productMetric: 'My Product Metric', + position: 10, + }, + { + product_id: '507f1f77bcf86cdef799439011', + productDimension: 'My Product Dimension1', + productMetric: 'My Product Metric1', + position: -10, + }, + ], + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + removeExternalId: false, + eventsToEvents: [ + { + from: 'My product list', + to: 'ViewContent', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: 'list_id', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"quantity":2,"category":"cat 1","list_id":"1234","filters[0].type":"department","filters[0].value":"beauty","filters[1].type":"price","filters[1].value":"under","sorts[0].type":"price","sorts[0].value":"desc","products[0].product_id":"507f1f77bcf86cd799439011","products[0].productDimension":"My Product Dimension","products[0].productMetric":"My Product Metric","products[0].position":10,"products[1].product_id":"507f1f77bcf86cdef799439011","products[1].productDimension":"My Product Dimension1","products[1].productMetric":"My Product Metric1","products[1].position":-10,"testDimension":true,"testMetric":true,"content_ids":["507f1f77bcf86cd799439011","507f1f77bcf86cdef799439011"],"content_type":"product","contents":[{"id":"507f1f77bcf86cd799439011","quantity":2},{"id":"507f1f77bcf86cdef799439011","quantity":2}],"content_category":"cat 1","value":0,"currency":"USD"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product viewed', + properties: { + currency: 'CAD', + quantity: 1, + price: 24.75, + name: 'my product 1', + category: 'clothing', + sku: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + removeExternalId: true, + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","quantity":1,"price":24.75,"name":"my product 1","category":"clothing","sku":"p-298","testDimension":true,"testMetric":true,"position":4.5,"content_ids":["p-298"],"content_type":"product","content_name":"my product 1","content_category":"clothing","value":24.75,"contents":[{"id":"p-298","quantity":1,"item_price":24.75}]}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 16', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product added', + properties: { + currency: 'CAD', + quantity: 1, + value: 24.75, + category: 'cat 1', + id: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + removeExternalId: false, + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.value', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"AddToCart","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","quantity":1,"value":24.75,"category":"cat 1","id":"p-298","testDimension":true,"testMetric":true,"position":4.5,"content_ids":["p-298"],"content_type":"product","content_name":"","content_category":"cat 1","contents":[{"id":"p-298","quantity":1}]}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 17', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'order completed', + properties: { + order_id: 'rudderstackorder1', + total: 99.99, + revenue: 12.24, + shipping: 13.99, + tax: 20.99, + currency: 'INR', + contentName: 'all about nutrition', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 3, + price: 24.75, + name: 'other product', + sku: 'p-299', + }, + ], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Purchase","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"order_id":"rudderstackorder1","total":99.99,"revenue":12.24,"shipping":13.99,"tax":20.99,"currency":"INR","contentName":"all about nutrition","products[0].quantity":1,"products[0].price":24.75,"products[0].name":"my product","products[0].sku":"p-298","products[1].quantity":3,"products[1].price":24.75,"products[1].name":"other product","products[1].sku":"p-299","content_ids":["p-298","p-299"],"content_type":"product","value":12.24,"contents":[{"id":"p-298","quantity":1,"item_price":24.75},{"id":"p-299","quantity":3,"item_price":24.75}],"num_items":2,"content_name":"all about nutrition"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 18', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'checkout started', + properties: { + currency: 'CAD', + category: 'clothing', + contentName: 'abc', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 1, + price: 24.75, + name: 'my product 2', + sku: 'p-299', + }, + ], + step: 1, + paymentMethod: 'Visa', + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: 'contentName', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"InitiateCheckout","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","category":"clothing","contentName":"abc","products[0].quantity":1,"products[0].price":24.75,"products[0].name":"my product","products[0].sku":"p-298","products[1].quantity":1,"products[1].price":24.75,"products[1].name":"my product 2","products[1].sku":"p-299","step":1,"paymentMethod":"Visa","testDimension":true,"testMetric":true,"content_category":"clothing","content_ids":["p-298","p-299"],"content_type":"product","value":0,"contents":[{"id":"p-298","quantity":1,"item_price":24.75},{"id":"p-299","quantity":1,"item_price":24.75}],"num_items":2}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 19', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + dataProcessingOptions: [['LDU'], 1, 1000], + fbc: 'fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890', + fbp: 'fb.1.1554763741205.234567890', + fb_login_id: 'fb_id', + lead_id: 'lead_id', + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUSage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08","fbc":"fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890","fbp":"fb.1.1554763741205.234567890","lead_id":"lead_id","fb_login_id":"fb_id"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","data_processing_options":["LDU"],"data_processing_options_country":1,"data_processing_options_state":1000,"custom_data":{"additional_bet_index":0,"value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 20', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + dataProcessingOptions: [['LDU'], 1, 1000], + fbc: 'fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890', + fbp: 'fb.1.1554763741205.234567890', + fb_login_id: 'fb_id', + lead_id: 'lead_id', + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUSage: false, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08","fbc":"fb.1.1554763741205.AbCdEfGhIjKlMnOpQrStUvWxYz1234567890","fbp":"fb.1.1554763741205.234567890","lead_id":"lead_id","fb_login_id":"fb_id"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","custom_data":{"additional_bet_index":0,"value":400}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 21', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'products searched', + properties: { + product_id: 'p-298', + quantity: 2, + price: 18.9, + category: 'health', + value: 18.9, + query: 'HDMI cable', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Search","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"product_id":"p-298","quantity":2,"price":18.9,"category":"health","value":18.9,"query":"HDMI cable","content_ids":["p-298"],"content_category":"health","contents":[{"id":"p-298","quantity":2,"item_price":18.9}],"search_string":"HDMI cable","currency":"USD"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 22', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'products searched', + properties: { + query: 'HDMI cable', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + testDestination: true, + testEventCode: 'TEST1001', + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Search","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"query":"HDMI cable","content_ids":[],"content_category":"","value":0,"contents":[],"search_string":"HDMI cable","currency":"USD"}}', + ], + test_event_code: 'TEST1001', + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 23', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: 'xyz', + search: 'def', + title: 'ghi', + url: 'jkl', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + standardPageCall: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: 'phone', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: 'url', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: 'email', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_ip_address":"0.0.0.0","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"PageView","event_time":1697278611,"event_source_url":"jkl","event_id":"5e10d13a-bf9a-44bf-b884-43a9e591ea71","action_source":"website","custom_data":{"path":"/abc","referrer":"xyz","search":"def","title":"ghi","url":"jkl"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 24', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'track page', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: 'track page', + to: 'PageView', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: 'additional_bet_index', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"PageView","event_time":1697278611,"action_source":"other","custom_data":{"revenue":400,"additional_bet_index":0}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 25', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'my product list', + properties: { + email: 'abc@gmail.com', + quantity: 2, + category: 'cat 1', + list_id: '1234', + filters: [ + { + type: 'department', + value: 'beauty', + }, + { + type: 'price', + value: 'under', + }, + ], + sorts: [ + { + type: 'price', + value: 'desc', + }, + ], + products: [ + { + product_id: '507f1f77bcf86cd799439011', + productDimension: 'My Product Dimension', + productMetric: 'My Product Metric', + position: 10, + }, + { + product_id: '507f1f77bcf86cdef799439011', + productDimension: 'My Product Dimension1', + productMetric: 'My Product Metric1', + position: -10, + }, + ], + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: 'My product list', + to: 'Schedule', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: 'list_id', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Schedule","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"quantity":2,"category":"cat 1","list_id":"1234","filters[0].type":"department","filters[0].value":"beauty","filters[1].type":"price","filters[1].value":"under","sorts[0].type":"price","sorts[0].value":"desc","products[0].product_id":"507f1f77bcf86cd799439011","products[0].productDimension":"My Product Dimension","products[0].productMetric":"My Product Metric","products[0].position":10,"products[1].product_id":"507f1f77bcf86cdef799439011","products[1].productDimension":"My Product Dimension1","products[1].productMetric":"My Product Metric1","products[1].position":-10,"testDimension":true,"testMetric":true}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 26', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: "'event' is required", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 27', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product added', + properties: { + currency: 'CAD', + quantity: 1, + value: '35.753', + category: 'cat 1', + id: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.value', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"AddToCart","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","quantity":1,"value":35.75,"category":"cat 1","id":"p-298","testDimension":true,"testMetric":true,"position":4.5,"content_ids":["p-298"],"content_type":"product","content_name":"","content_category":"cat 1","contents":[{"id":"p-298","quantity":1}]}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 28', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product added', + properties: { + currency: 'CAD', + quantity: 1, + value: '35.7A3', + category: 'cat 1', + id: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.value', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"AddToCart","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","quantity":1,"value":35.7,"category":"cat 1","id":"p-298","testDimension":true,"testMetric":true,"position":4.5,"content_ids":["p-298"],"content_type":"product","content_name":"","content_category":"cat 1","contents":[{"id":"p-298","quantity":1}]}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 29', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product added', + properties: { + currency: 'CAD', + quantity: 1, + value: 'ABC', + category: 'cat 1', + id: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.value', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Revenue could not be converted to number', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 30', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'order completed', + properties: { + category: ['clothing', 'fishing'], + order_id: 'rudderstackorder1', + total: 99.99, + revenue: 12.24, + shipping: 13.99, + tax: 20.99, + currency: 'INR', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 3, + price: 24.75, + name: 'other product', + sku: 'p-299', + }, + ], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Purchase","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"category[0]":"clothing","category[1]":"fishing","order_id":"rudderstackorder1","total":99.99,"revenue":12.24,"shipping":13.99,"tax":20.99,"currency":"INR","products[0].quantity":1,"products[0].price":24.75,"products[0].name":"my product","products[0].sku":"p-298","products[1].quantity":3,"products[1].price":24.75,"products[1].name":"other product","products[1].sku":"p-299","content_category":"clothing,fishing","content_ids":["p-298","p-299"],"content_type":"product","value":12.24,"contents":[{"id":"p-298","quantity":1,"item_price":24.75},{"id":"p-299","quantity":3,"item_price":24.75}],"num_items":2}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 31', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'order completed', + properties: { + category: 100, + order_id: 'rudderstackorder1', + total: 99.99, + revenue: 12.24, + shipping: 13.99, + tax: 20.99, + currency: 'INR', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 3, + price: 24.75, + name: 'other product', + sku: 'p-299', + }, + ], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Purchase","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"category":100,"order_id":"rudderstackorder1","total":99.99,"revenue":12.24,"shipping":13.99,"tax":20.99,"currency":"INR","products[0].quantity":1,"products[0].price":24.75,"products[0].name":"my product","products[0].sku":"p-298","products[1].quantity":3,"products[1].price":24.75,"products[1].name":"other product","products[1].sku":"p-299","content_category":"100","content_ids":["p-298","p-299"],"content_type":"product","value":12.24,"contents":[{"id":"p-298","quantity":1,"item_price":24.75},{"id":"p-299","quantity":3,"item_price":24.75}],"num_items":2}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 32', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'order completed', + properties: { + category: { + category1: '1', + }, + order_id: 'rudderstackorder1', + total: 99.99, + revenue: 12.24, + shipping: 13.99, + tax: 20.99, + currency: 'INR', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 3, + price: 24.75, + name: 'other product', + sku: 'p-299', + }, + ], + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: "'properties.category' must be either be a string or an array", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 33', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: 'spin_result', + to: 'Schedule', + }, + { + to: 'Schedule', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"6dc8118ec743f5f3b758939714193f547f4a674c68757fa80d7c9564dc093b0a","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"Schedule","event_time":1697278611,"action_source":"other","custom_data":{"revenue":400,"additional_bet_index":0}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 34', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2019-08-24T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: 'spin_result', + to: 'Schedule', + }, + { + to: 'Schedule', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: + 'Events must be sent within seven days of their occurrence or up to one minute in the future.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 35', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + originalTimestamp: '2019-04-16T15:50:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: 'validToken', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: true, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: + 'Events must be sent within seven days of their occurrence or up to one minute in the future.', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 36', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'products searched', + properties: { + query: { + key1: 'HDMI cable', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: "'query' should be in string format only", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 37', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'products searched', + properties: { + query: 50, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"Search","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"query":50,"content_ids":[],"content_category":"","value":0,"contents":[],"search_string":50,"currency":"USD"}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 38', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + url: 'https://theminimstory.com/collections/summer-of-pearls?utm_source=facebook&utm_medium=paidsocial&utm_campaign=carousel&utm_content=ad1-jul&fbclid=IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI', + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'checkout started', + properties: { + currency: 'CAD', + category: 'clothing', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 1, + price: 24.75, + name: 'my product 2', + sku: 'p-299', + }, + ], + step: 1, + paymentMethod: 'Visa', + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36","fbc":"fb.1.1697278611693.IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI"},"event_name":"InitiateCheckout","event_time":1697278611,"event_source_url":"https://theminimstory.com/collections/summer-of-pearls?utm_source=facebook&utm_medium=paidsocial&utm_campaign=carousel&utm_content=ad1-jul&fbclid=IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI","event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","category":"clothing","products[0].quantity":1,"products[0].price":24.75,"products[0].name":"my product","products[0].sku":"p-298","products[1].quantity":1,"products[1].price":24.75,"products[1].name":"my product 2","products[1].sku":"p-299","step":1,"paymentMethod":"Visa","testDimension":true,"testMetric":true,"content_category":"clothing","content_ids":["p-298","p-299"],"content_type":"product","value":0,"contents":[{"id":"p-298","quantity":1,"item_price":24.75},{"id":"p-299","quantity":1,"item_price":24.75}],"num_items":2}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 39', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + url: 'https://theminimstory.com/collections/summer-of-pearls?utm_source=facebook&utm_medium=paidsocial&utm_campaign=carousel&utm_content=ad1-jul&fbclid=IwAR2SsDcjzd_TLZN-e93kxOeGBYO4pQ3AiyeXSheHW5emDeLw8uTvo6lTMPI', + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: { + name: 'checkout started', + }, + properties: { + currency: 'CAD', + category: 'clothing', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 1, + price: 24.75, + name: 'my product 2', + sku: 'p-299', + }, + ], + step: 1, + paymentMethod: 'Visa', + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'event name should be string', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 40', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + url: 'url in wrong format', + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'checkout started', + properties: { + currency: 'CAD', + category: 'clothing', + products: [ + { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + { + quantity: 1, + price: 24.75, + name: 'my product 2', + sku: 'p-299', + }, + ], + step: 1, + paymentMethod: 'Visa', + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"5994471abb01112afcc18159f6cc74b4f511b99806da59b3caf5a9c173cacfc5","em":"1c5e54849f5c711ce38fa60716fbbe44bff478f9ca250897b39cdfc2438cd1bd","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"InitiateCheckout","event_time":1697278611,"event_source_url":"url in wrong format","event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","category":"clothing","products[0].quantity":1,"products[0].price":24.75,"products[0].name":"my product","products[0].sku":"p-298","products[1].quantity":1,"products[1].price":24.75,"products[1].name":"my product 2","products[1].sku":"p-299","step":1,"paymentMethod":"Visa","testDimension":true,"testMetric":true,"content_category":"clothing","content_ids":["p-298","p-299"],"content_type":"product","value":0,"contents":[{"id":"p-298","quantity":1,"item_price":24.75},{"id":"p-299","quantity":1,"item_price":24.75}],"num_items":2}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 41', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product viewed', + properties: { + currency: 'CAD', + quantity: 1, + price: 24.75, + name: 'my product 1', + category: 'clothing', + sku: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + Facebook_Pixel: { + contentType: 'sending dedicated content type for this particular payload', + }, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + removeExternalId: true, + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","quantity":1,"price":24.75,"name":"my product 1","category":"clothing","sku":"p-298","testDimension":true,"testMetric":true,"position":4.5,"content_ids":["p-298"],"content_type":"sending dedicated content type for this particular payload","content_name":"my product 1","content_category":"clothing","value":24.75,"contents":[{"id":"p-298","quantity":1,"item_price":24.75}]}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 42', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product viewed', + properties: { + currency: 'CAD', + quantity: 1, + price: 24.75, + value: 18.9, + name: 'my product 1', + category: 'clothing', + sku: 'p-298', + testDimension: true, + testMetric: true, + position: 4.5, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + removeExternalId: true, + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.value', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"ViewContent","event_time":1697278611,"event_id":"ec5481b6-a926-4d2e-b293-0b3a77c4d3be","action_source":"website","custom_data":{"currency":"CAD","quantity":1,"price":24.75,"value":18.9,"name":"my product 1","category":"clothing","sku":"p-298","testDimension":true,"testMetric":true,"position":4.5,"content_ids":["p-298"],"content_type":"product","content_name":"my product 1","content_category":"clothing","contents":[{"id":"p-298","quantity":1,"item_price":24.75}]}}', + ], + }, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 43', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'test@rudderstack.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'order completed', + properties: { + order_id: 'rudderstackorder1', + total: 99.99, + revenue: 12.24, + shipping: 13.99, + tax: 20.99, + currency: 'INR', + contentName: 'all about nutrition', + products: { + quantity: 1, + price: 24.75, + name: 'my product', + sku: 'p-298', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + categoryToContent: [ + { + from: 'clothing', + to: 'product', + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: "'properties.products' is not sent as an Array", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 44', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'product list viewed', + properties: { + email: 'abc@gmail.com', + quantity: 2, + category: 'cat 1', + list_id: '1234', + contentName: 'nutrition', + value: 18.9, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + productDimension: 'My Product Dimension', + productMetric: 'My Product Metric', + position: 10, + }, + [ + { + product_id: '507f1f77bcf86cdef799439011', + productDimension: 'My Product Dimension1', + productMetric: 'My Product Metric1', + position: -10, + }, + ], + ], + testDimension: true, + testMetric: true, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: "'properties.products[1]' is not an object", + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 45', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'custom', + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + pixelId: 'dummyPixelId', + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Access token not found. Aborting', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 46', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2023-10-14T15:46:51.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'custom', + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: true, + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: 'Pixel Id not found. Aborting', + statTags: { + errorCategory: 'dataValidation', + errorType: 'configuration', + destType: 'FACEBOOK_PIXEL', + module: 'destination', + implementation: 'native', + feature: 'processor', + }, + }, + ], + }, + }, + }, + { + name: 'facebook_pixel', + description: 'Test 47', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + metadata: { + jobId: 12, + }, + destination: { + secretConfig: {}, + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + valueFieldIdentifier: 'properties.price', + advancedMapping: false, + whitelistPiiProperties: [], + limitedDataUSage: false, + accessToken: 'dummyAccessToken', + testDestination: false, + testEventCode: '', + standardPageCall: false, + blacklistedEvents: [], + whitelistedEvents: [], + eventFilteringOption: 'disable', + removeExternalId: false, + useUpdatedMapping: false, + oneTrustCookieCategories: [], + useNativeSDK: false, + eventDelivery: false, + eventDeliveryTS: 1686748039135, + }, + liveEventsConfig: { + eventDelivery: false, + eventDeliveryTS: 1686748039135, + }, + id: 'destId1', + workspaceId: 'wsp2', + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + name: 'san-fb_pixel', + enabled: true, + deleted: false, + createdAt: '2023-06-06T13:36:08.579Z', + updatedAt: '2023-06-14T13:07:19.136Z', + revisionId: 'revId2', + secretVersion: 3, + }, + message: { + type: 'page', + sentAt: '2023-10-14T15:46:51.000Z', + userId: 'user@19', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + version: 'dev-snapshot', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'http://127.0.0.1:8888/', + path: '/', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:8888/', + referrer: 'http://127.0.0.1:8888/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:8888', + initial_referring_domain: '', + }, + locale: 'en-GB', + screen: { + width: 1728, + height: 1117, + density: 2, + innerWidth: 547, + innerHeight: 915, + }, + traits: { + name: false, + source: 'rudderstack', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: 'dev-snapshot', + }, + campaign: {}, + sessionId: 1687769234506, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', + }, + rudderId: '6bbfd003-c074-4ee9-8674-c132ded9ff04', + timestamp: '2023-10-14T15:46:51.000Z', + properties: { + url: 'http://127.0.0.1:8888/', + path: '/', + title: 'Document', + search: '', + tab_url: 'http://127.0.0.1:8888/', + referrer: 'http://127.0.0.1:8888/', + initial_referrer: '$direct', + referring_domain: '127.0.0.1:8888', + initial_referring_domain: '', + }, + receivedAt: '2023-10-14T15:46:51.000Z', + request_ip: '49.206.54.243', + anonymousId: '700ab220-faad-4cdf-8484-63e4c6bce6fe', + integrations: { + All: true, + }, + originalTimestamp: '2023-10-14T15:46:51.000Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: + 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=dummyAccessToken', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"72fd46c9ecb386f6747664a3e1d524294a3d7a2c8ae4aeb22b1e578b75093635","client_ip_address":"49.206.54.243","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"},"event_name":"PageView","event_time":1697298411,"event_source_url":"http://127.0.0.1:8888/","action_source":"website","custom_data":{"url":"http://127.0.0.1:8888/","path":"/","title":"Document","search":"","tab_url":"http://127.0.0.1:8888/","referrer":"http://127.0.0.1:8888/","initial_referrer":"$direct","referring_domain":"127.0.0.1:8888","initial_referring_domain":""}}', + ], + }, + }, + files: {}, + userId: '', + }, + metadata: { + jobId: 12, + }, + statusCode: 200, + }, + ], + }, + }, + }, +].map((d) => ({ ...d, mockFns })); diff --git a/test/integrations/destinations/facebook_pixel/router/data.ts b/test/integrations/destinations/facebook_pixel/router/data.ts new file mode 100644 index 0000000000..ef6b9f8635 --- /dev/null +++ b/test/integrations/destinations/facebook_pixel/router/data.ts @@ -0,0 +1,316 @@ +export const mockFns = (_) => { + // @ts-ignore + jest.useFakeTimers().setSystemTime(new Date('2023-10-15')); +}; + +export const data = [ + { + name: 'facebook_pixel', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + }, + timestamp: '2023-10-14T15:46:51.693229+05:30', + type: 'track', + }, + metadata: { + jobId: 1, + }, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + removeExternalId: true, + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + { + message: { + channel: 'web', + context: { + traits: { + name: 'Rudder Test', + email: 'abc@gmail.com', + firstname: 'Test', + lastname: 'Test', + phone: 9000000000, + gender: 'female', + }, + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + properties: { + plan: 'standard plan', + name: 'rudder test', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2023-10-14T00:00:00.693229+05:30', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: true, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + destType: 'facebook_pixel', + }, + method: 'POST', + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + data: [ + '{"user_data":{"em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"spin_result","event_time":1697278611,"action_source":"other","custom_data":{"additional_bet_index":0,"value":400}}', + ], + }, + }, + files: {}, + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + limitedDataUsage: true, + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + removeExternalId: true, + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: false, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/dummyPixelId/events?access_token=09876', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + data: [ + '{"user_data":{"external_id":"8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92","em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08","ph":"593a6d58f34eb5c3de4f47e38d1faaa7d389fafe332a85400b1e54498391c579","ge":"252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111","ln":"532eaabd9574880dbf76b9b8cc00832c20a6ec113d682299550d7a6e0f345e25","fn":"2c2ccf28d806f6f9a34b67aa874d2113b7ac1444f1a4092541b8b75b84771747","client_ip_address":"0.0.0.0","client_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"},"event_name":"identify","event_time":1697221800,"event_id":"84e26acc-56a5-4835-8233-591137fca468","action_source":"website"}', + ], + }, + }, + files: {}, + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + blacklistPiiProperties: [ + { + blacklistPiiProperties: '', + blacklistPiiHash: false, + }, + ], + accessToken: '09876', + pixelId: 'dummyPixelId', + eventsToEvents: [ + { + from: '', + to: '', + }, + ], + eventCustomProperties: [ + { + eventCustomProperties: '', + }, + ], + valueFieldIdentifier: '', + advancedMapping: true, + whitelistPiiProperties: [ + { + whitelistPiiProperties: '', + }, + ], + }, + Enabled: true, + }, + }, + ], + }, + }, + }, + }, +].map((d) => ({ ...d, mockFns })); diff --git a/test/integrations/destinations/fb/processor/data.ts b/test/integrations/destinations/fb/processor/data.ts new file mode 100644 index 0000000000..9b57f3ef78 --- /dev/null +++ b/test/integrations/destinations/fb/processor/data.ts @@ -0,0 +1,2184 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: 123, + }, + { + product_id: 345, + }, + { + product_id: 567, + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'If properties.revenue is present, properties.currency is required.', + statTags: { + destType: 'FB', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: 123, + }, + { + product_id: 345, + }, + { + product_id: 567, + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: + 'Value of properties.products.sub.product_id is not of valid type. It should be of type string', + statTags: { + destType: 'FB', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: '400', + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + { + product_id: '567', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Value of properties.revenue is not of valid type. It should be of type number', + statTags: { + destType: 'FB', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + advertisingId: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + type: 'Android', + }, + ip: '1.2.3.4', + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + width: '640', + height: '480', + density: 1.23456, + }, + timezone: 'Europe/Berlin', + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + firstName: 'test', + lastName: 'last', + gender: 1234, + phone: '+91-9831311135', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + { + product_id: '567', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: { + event: 'CUSTOM_APP_EVENTS', + advertiser_id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + 'ud[fn]': '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', + 'ud[ln]': '3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3', + 'ud[ph]': '588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f', + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",640,480,"1.23",0,0,0,"Europe/Berlin"]', + app_user_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"spin_result","_valueToSum":400,"fb_currency":"GBP","additional_bet_index":0,"battle_id":"N/A","bet_amount":9,"bet_level":1,"bet_multiplier":1,"coin_balance":9466052,"current_module_name":"CasinoGameModule","days_in_game":0,"extra_param":"N/A","fb_profile":"0","featureGameType":"N/A","game_fps":30,"game_id":"fireEagleBase","game_name":"FireEagleSlots","gem_balance":0,"graphicsQuality":"HD","idfa":"2bf99787-33d2-4ae2-a76a-c49672f97252","internetReachability":"ReachableViaLocalAreaNetwork","isLowEndDevice":"False","is_auto_spin":"False","is_turbo":"False","isf":"False","ishighroller":"False","jackpot_win_amount":90,"jackpot_win_type":"Silver","level":6,"lifetime_gem_balance":0,"no_of_spin":1,"player_total_battles":0,"player_total_shields":0,"start_date":"2019-08-01","total_payments":0,"tournament_id":"T1561970819","userId":"c82cbdff-e5be-4009-ac78-cdeea09ab4b1","versionSessionCount":2,"win_amount":0,"fb_content_id":["123","345","567"]}]', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + }, + JSON: {}, + }, + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + files: {}, + headers: { + 'x-forwarded-for': '1.2.3.4', + }, + method: 'POST', + params: {}, + statusCode: 200, + type: 'REST', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + version: '1', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + advertisingId: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + type: 'Android', + }, + ip: '1.2.3.4', + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + width: '640', + height: '480', + density: 1.23456, + }, + timezone: 'Europe/Berlin', + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + firstName: 'test', + lastName: 'last', + gender: 'Male', + phone: '+91-9831311135', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + { + product_id: '567', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: { + event: 'CUSTOM_APP_EVENTS', + advertiser_id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + 'ud[fn]': '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', + 'ud[ge]': '62c66a7a5dd70c3146618063c344e531e6d4b59e379808443ce962b3abd63c5a', + 'ud[ln]': '3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3', + 'ud[ph]': '588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f', + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",640,480,"1.23",0,0,0,"Europe/Berlin"]', + app_user_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"spin_result","_valueToSum":400,"fb_currency":"GBP","additional_bet_index":0,"battle_id":"N/A","bet_amount":9,"bet_level":1,"bet_multiplier":1,"coin_balance":9466052,"current_module_name":"CasinoGameModule","days_in_game":0,"extra_param":"N/A","fb_profile":"0","featureGameType":"N/A","game_fps":30,"game_id":"fireEagleBase","game_name":"FireEagleSlots","gem_balance":0,"graphicsQuality":"HD","idfa":"2bf99787-33d2-4ae2-a76a-c49672f97252","internetReachability":"ReachableViaLocalAreaNetwork","isLowEndDevice":"False","is_auto_spin":"False","is_turbo":"False","isf":"False","ishighroller":"False","jackpot_win_amount":90,"jackpot_win_type":"Silver","level":6,"lifetime_gem_balance":0,"no_of_spin":1,"player_total_battles":0,"player_total_shields":0,"start_date":"2019-08-01","total_payments":0,"tournament_id":"T1561970819","userId":"c82cbdff-e5be-4009-ac78-cdeea09ab4b1","versionSessionCount":2,"win_amount":0,"fb_content_id":["123","345","567"]}]', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + }, + JSON: {}, + }, + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + files: {}, + headers: { + 'x-forwarded-for': '1.2.3.4', + }, + method: 'POST', + params: {}, + statusCode: 200, + type: 'REST', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + version: '1', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Main.1233', + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'screen', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"Viewed Screen","fb_description":"Main.1233"}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Main', + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'screen', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"Viewed Main Screen","fb_description":"Main"}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'New.Event', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Main', + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: + 'Event name New.Event is not a valid FB APP event name.It must match the regex ^[0-9a-zA-Z_][0-9a-zA-Z _-]{0,39}$.', + statTags: { + destType: 'FB', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'iOS', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'iOS', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Viewed Main Screen1 by expicit call Screen', + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'screen', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["i2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"Viewed Screen","fb_description":"Viewed Main Screen1 by expicit call Screen"}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'Android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Viewed Main Screen1 by expicit call Screen', + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'screen', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"Viewed Screen","fb_description":"Viewed Main Screen1 by expicit call Screen"}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'Android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Viewed Main Screen1 by expicit call Screen', + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'screen', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"Viewed Screen","fb_description":"Viewed Main Screen1 by expicit call Screen"}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + advertisingId: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + firstName: 'test', + lastName: 'last', + gender: 'Male', + phone: '919831311135', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + { + product_id: '567', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"spin_result","_valueToSum":400,"fb_currency":"GBP","additional_bet_index":0,"battle_id":"N/A","bet_amount":9,"bet_level":1,"bet_multiplier":1,"coin_balance":9466052,"current_module_name":"CasinoGameModule","days_in_game":0,"extra_param":"N/A","fb_profile":"0","featureGameType":"N/A","game_fps":30,"game_id":"fireEagleBase","game_name":"FireEagleSlots","gem_balance":0,"graphicsQuality":"HD","idfa":"2bf99787-33d2-4ae2-a76a-c49672f97252","internetReachability":"ReachableViaLocalAreaNetwork","isLowEndDevice":"False","is_auto_spin":"False","is_turbo":"False","isf":"False","ishighroller":"False","jackpot_win_amount":90,"jackpot_win_type":"Silver","level":6,"lifetime_gem_balance":0,"no_of_spin":1,"player_total_battles":0,"player_total_shields":0,"start_date":"2019-08-01","total_payments":0,"tournament_id":"T1561970819","userId":"c82cbdff-e5be-4009-ac78-cdeea09ab4b1","versionSessionCount":2,"win_amount":0,"fb_content_id":["123","345","567"]}]', + app_user_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + advertiser_id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + 'ud[fn]': '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', + 'ud[ln]': '3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3', + 'ud[ph]': '588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f', + 'ud[ge]': '62c66a7a5dd70c3146618063c344e531e6d4b59e379808443ce962b3abd63c5a', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + advertisingId: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + firstName: 'test', + lastName: 'last', + gender: 'Male', + phone: '+0091-9831311135', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + { + product_id: '567', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"spin_result","_valueToSum":400,"fb_currency":"GBP","additional_bet_index":0,"battle_id":"N/A","bet_amount":9,"bet_level":1,"bet_multiplier":1,"coin_balance":9466052,"current_module_name":"CasinoGameModule","days_in_game":0,"extra_param":"N/A","fb_profile":"0","featureGameType":"N/A","game_fps":30,"game_id":"fireEagleBase","game_name":"FireEagleSlots","gem_balance":0,"graphicsQuality":"HD","idfa":"2bf99787-33d2-4ae2-a76a-c49672f97252","internetReachability":"ReachableViaLocalAreaNetwork","isLowEndDevice":"False","is_auto_spin":"False","is_turbo":"False","isf":"False","ishighroller":"False","jackpot_win_amount":90,"jackpot_win_type":"Silver","level":6,"lifetime_gem_balance":0,"no_of_spin":1,"player_total_battles":0,"player_total_shields":0,"start_date":"2019-08-01","total_payments":0,"tournament_id":"T1561970819","userId":"c82cbdff-e5be-4009-ac78-cdeea09ab4b1","versionSessionCount":2,"win_amount":0,"fb_content_id":["123","345","567"]}]', + app_user_id: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + advertiser_id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + 'ud[fn]': '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08', + 'ud[ln]': '3547cb112ac4489af2310c0626cdba6f3097a2ad5a3b42ddd3b59c76c7a079a3', + 'ud[ph]': '588211a01b10feacbf7988d97a06e86c18af5259a7f457fd8759b7f7409a7d1f', + 'ud[ge]': '62c66a7a5dd70c3146618063c344e531e6d4b59e379808443ce962b3abd63c5a', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + type: 'watchos', + }, + network: { + carrier: 'Banglalink', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + name: 'Viewed Main Screen1 by expicit call Screen', + }, + request_ip: '2.3.4.5', + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'screen', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: { + 'x-forwarded-for': '2.3.4.5', + }, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + extinfo: '["i2","","","","","","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"Viewed Screen","fb_description":"Viewed Main Screen1 by expicit call Screen"}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + advertisingId: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + firstName: 'test', + lastName: 'last', + gender: 'Male', + phone: '919831311135', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + { + product_id: '567', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Extended device information i.e, "context.device.type" is required', + statTags: { + destType: 'FB', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 0, + currency: 'INR', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: '123', + }, + { + product_id: '345', + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/RudderFbApp/activities', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: { + extinfo: + '["a2","","","","8.1.0","Redmi 6","","","Banglalink",0,100,"50.00",0,0,0,""]', + custom_events: + '[{"_logTime":1567333011693,"_eventName":"spin_result","_valueToSum":0,"fb_currency":"INR","additional_bet_index":0,"battle_id":"N/A","bet_amount":9,"bet_level":1,"bet_multiplier":1,"coin_balance":9466052,"current_module_name":"CasinoGameModule","days_in_game":0,"extra_param":"N/A","fb_profile":"0","featureGameType":"N/A","game_fps":30,"game_id":"fireEagleBase","game_name":"FireEagleSlots","gem_balance":0,"graphicsQuality":"HD","idfa":"2bf99787-33d2-4ae2-a76a-c49672f97252","internetReachability":"ReachableViaLocalAreaNetwork","isLowEndDevice":"False","is_auto_spin":"False","is_turbo":"False","isf":"False","ishighroller":"False","jackpot_win_amount":90,"jackpot_win_type":"Silver","level":6,"lifetime_gem_balance":0,"no_of_spin":1,"player_total_battles":0,"player_total_shields":0,"start_date":"2019-08-01","total_payments":0,"tournament_id":"T1561970819","userId":"c82cbdff-e5be-4009-ac78-cdeea09ab4b1","versionSessionCount":2,"win_amount":0,"fb_content_id":["123","345"]}]', + 'ud[em]': '48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', + advertiser_tracking_enabled: '0', + application_tracking_enabled: '0', + event: 'CUSTOM_APP_EVENTS', + }, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/fb/router/data.ts b/test/integrations/destinations/fb/router/data.ts new file mode 100644 index 0000000000..4daefad141 --- /dev/null +++ b/test/integrations/destinations/fb/router/data.ts @@ -0,0 +1,317 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: 123, + }, + { + product_id: 345, + }, + { + product_id: 567, + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + destination_props: { + Fb: { + app_id: 'RudderFbApp', + }, + }, + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + type: 'Android', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + screen: { + height: '100', + density: 50, + }, + traits: { + email: 'abc@gmail.com', + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + All: false, + GA: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + revenue: 400, + currency: 'GBP', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + products: [ + { + product_id: 123, + }, + { + product_id: 345, + }, + { + product_id: 567, + }, + ], + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + }, + ], + destType: 'fb', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + metadata: [ + { + jobId: 2, + }, + ], + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FB', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + batched: false, + statusCode: 400, + error: 'If properties.revenue is present, properties.currency is required.', + }, + { + metadata: [ + { + jobId: 2, + }, + ], + destination: { + Config: { + appID: 'RudderFbApp', + }, + }, + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'FB', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + batched: false, + statusCode: 400, + error: + 'Value of properties.products.sub.product_id is not of valid type. It should be of type string', + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/fb_custom_audience/processor/data.ts b/test/integrations/destinations/fb_custom_audience/processor/data.ts new file mode 100644 index 0000000000..17dcda3a98 --- /dev/null +++ b/test/integrations/destinations/fb_custom_audience/processor/data.ts @@ -0,0 +1,54420 @@ +export const data = [ + { + name: 'fb_custom_audience', + description: 'No Message type', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message Type is not present. Aborting message.', + statTags: { + destType: 'FB_CUSTOM_AUDIENCE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Unsupported Event type ', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + type: 'Track', + event: 'event1', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: ' Track call is not supported ', + statTags: { + destType: 'FB_CUSTOM_AUDIENCE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Non-Numerical Batch Size Event', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + type: 'audiencelist', + event: 'event1', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: 'abc50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Batch size must be an Integer.', + statTags: { + destType: 'FB_CUSTOM_AUDIENCE', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Audience ID Empty Event', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + type: 'audiencelist', + event: 'event1', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: '', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Audience ID is a mandatory field', + statTags: { + destType: 'FB_CUSTOM_AUDIENCE', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Type NA ', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'No Hashing and Format Disabled', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: true, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + userId: '', + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'For User Schema having single Schema field Event ', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: 'DOBM', + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + userId: '', + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: ['DOBM'], + data: [['2']], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + userId: '', + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: ['DOBM'], + data: [['2']], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Hashing Disabaled and Type Unknown ', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Required Hash', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: true, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + userId: '', + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', + 'a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116', + '3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278', + '7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f', + '0dcd4be87427e008a16adbdc2b2c15a14accf485dd451314dcecfb902c51c686', + '252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111', + 'db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc', + 'abc', + '4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2', + 'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad', + '582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', + 'a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116', + '3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278', + '7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f', + '0dcd4be87427e008a16adbdc2b2c15a14accf485dd451314dcecfb902c51c686', + '252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111', + 'db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc', + 'abc', + '4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2', + 'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad', + '582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Format Disabled', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: true, + disableFormat: true, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', + 'd4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35', + '3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278', + '7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f', + '3c98400cbfaf690bf3601f538def8ff16f3b3bcd075b028fa28aa44ca09fec22', + '252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111', + '7cfb46258a6f545f77cca49a27ded0bc69a56e16d0dcdf05ec843c0cc322145d', + 'ABC', + '69deb728a28faee80ee80d8d5f97a5e2fd65758684f7412e535d19a19095369b', + '1dc362d22242a898483383061a98f0b41d725190f7bc00a962b6013b36dc2b81', + 'fed1d872f6d540f4118582ec694270274e987b12f5dfe2057dddf1e12df2761a', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', + 'd4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35', + '3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278', + '7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f', + '3c98400cbfaf690bf3601f538def8ff16f3b3bcd075b028fa28aa44ca09fec22', + '252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111', + '7cfb46258a6f545f77cca49a27ded0bc69a56e16d0dcdf05ec843c0cc322145d', + 'ABC', + '69deb728a28faee80ee80d8d5f97a5e2fd65758684f7412e535d19a19095369b', + '1dc362d22242a898483383061a98f0b41d725190f7bc00a962b6013b36dc2b81', + 'fed1d872f6d540f4118582ec694270274e987b12f5dfe2057dddf1e12df2761a', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'No Hashing and Format Disabled', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: true, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + userId: '', + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + userId: '', + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Hash Required and Verify skipped', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: null, + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: true, + disableFormat: false, + skipVerify: true, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + userId: '', + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', + 'a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116', + '3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278', + '7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f', + null, + '252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111', + 'db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc', + 'abc', + '4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2', + 'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad', + '582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf', + ], + ], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'All the field values are null', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: null, + DOBM: null, + DOBD: null, + DOBY: null, + PHONE: null, + GEN: null, + FI: null, + MADID: null, + ZIP: null, + ST: null, + COUNTRY: null, + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: true, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + userId: '', + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [[null, null, null, null, null, null, null, null, null, null, null]], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Schema Phone Field Missing', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: null, + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: true, + disableFormat: false, + skipVerify: false, + audienceId: 'aud1', + isRaw: false, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + '85cc9fefa1eff1baab55d10df0cecff2acb25344867a5d0f96e1b1c5e2f10f05', + 'a953f09a1b6b6725b81956e9ad0b1eb49e3ad40004c04307ef8af6246a054116', + '3fdba35f04dc8c462986c992bcf875546257113072a909c162f7e470e581e278', + '7931aa2a1bed855457d1ddf6bc06ab4406a9fba0579045a4d6ff78f9c07c440f', + null, + '252f10c83610ebca1a059c0bae8255eba2f95be4d1d7bcfa89d7248a82d9f111', + 'db0683221aebc02cc034b65ebcf7d1bddd1eb199e33fd23a31931947d13a11bc', + 'abc', + '4a70fe9aa6436e02c2dea340fbd1e352e4ef2d8ce6ca52ad25d4b95471fc8bf2', + 'ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad', + '582967534d0f909d196b97f9e6921342777aea87b46fa52df165389db1fb8ccf', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'Batching according payload size', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: true, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '1000', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + userId: '', + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/fb_custom_audience/router/data.ts b/test/integrations/destinations/fb_custom_audience/router/data.ts new file mode 100644 index 0000000000..c458b45c91 --- /dev/null +++ b/test/integrations/destinations/fb_custom_audience/router/data.ts @@ -0,0 +1,53019 @@ +export const data = [ + { + name: 'fb_custom_audience', + description: 'eventStream tests', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + metadata: { + jobId: 1, + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user 1', + anonymousId: 'anon-id-new', + event: 'event1', + type: 'audiencelist', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + remove: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'f', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + destType: 'fb_custom_audience', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + type: 'UNKNOWN', + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'UNKNOWN', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'DELETE', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + data_source: { + sub_type: 'ANYTHING', + }, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'f', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accessToken: 'ABC', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + isHashRequired: false, + disableFormat: false, + audienceId: 'aud1', + isRaw: true, + type: 'NA', + subType: 'ANYTHING', + maxUserCount: '50', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + }, + }, + { + name: 'fb_custom_audience', + description: 'rETL tests', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + sentAt: '2023-03-30 06:42:55.991938402 +0000 UTC', + userId: '2MUWghI7u85n91dd1qzGyswpZan-2MUWqbQqvctyfMGqU9QCNadpKNy', + channel: 'sources', + messageId: '4d906837-031d-4d34-b97a-62fdf51b4d3a', + event: 'Add_Audience', + context: { + destinationFields: 'EMAIL, FN', + externalId: [ + { + type: 'FB_CUSTOM_AUDIENCE-23848494844100489', + identifierType: 'EMAIL', + }, + ], + mappedToDestination: 'true', + sources: { + job_run_id: 'cgiiurt8um7k7n5dq480', + task_run_id: 'cgiiurt8um7k7n5dq48g', + job_id: '2MUWghI7u85n91dd1qzGyswpZan', + version: '895/merge', + }, + }, + recordId: '725ad989-6750-4839-b46b-0ddb3b8e5aa2/1/10', + rudderId: '85c49666-c628-4835-937b-8f1d9ee7a724', + properties: { + listData: { + add: [ + { + EMAIL: 'dede@gmail.com', + FN: 'vishwa', + }, + { + EMAIL: 'fchsjjn@gmail.com', + FN: 'hskks', + }, + { + EMAIL: 'fghjnbjk@gmail.com', + FN: 'ghfry', + }, + { + EMAIL: 'gvhjkk@gmail.com', + FN: 'hbcwqe', + }, + { + EMAIL: 'qsdwert@egf.com', + FN: 'dsfds', + }, + { + EMAIL: 'ascscxsaca@com', + FN: 'scadscdvcda', + }, + { + EMAIL: 'abc@gmail.com', + FN: 'subscribed', + }, + { + EMAIL: 'ddwnkl@gmail.com', + FN: 'subscribed', + }, + { + EMAIL: 'subscribed@eewrfrd.com', + FN: 'pending', + }, + { + EMAIL: 'acsdvdf@ddfvf.com', + FN: 'pending', + }, + ], + }, + }, + type: 'audienceList', + anonymousId: '63228b51-394e-4ca2-97a0-427f6187480b', + }, + destination: { + Config: { + accessToken: 'ABC', + disableFormat: false, + isHashRequired: true, + isRaw: false, + maxUserCount: '50', + oneTrustCookieCategories: [], + skipVerify: false, + subType: 'NA', + type: 'NA', + userSchema: ['EMAIL'], + }, + secretConfig: {}, + ID: '1mMy5cqbtfuaKZv1IhVQKnBdVwe', + name: 'FB_CUSTOM_AUDIENCE', + enabled: true, + workspaceId: '1TSN08muJTZwH8iCDmnnRt1pmLd', + deleted: false, + createdAt: '2020-12-30T08:39:32.005Z', + updatedAt: '2021-02-03T16:22:31.374Z', + destinationDefinition: { + id: '1aIXqM806xAVm92nx07YwKbRrO9', + name: 'FB_CUSTOM_AUDIENCE', + displayName: 'FB_CUSTOM_AUDIENCE', + createdAt: '2020-04-09T09:24:31.794Z', + updatedAt: '2021-01-11T11:03:28.103Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + }, + metadata: { + jobId: 2, + }, + }, + { + message: { + sentAt: '2023-03-30 06:42:55.991938402 +0000 UTC', + userId: '2MUWghI7u85n91dd1qzGyswpZan-2MUWqbQqvctyfMGqU9QCNadpKNy', + channel: 'sources', + messageId: '4d906837-031d-4d34-b97a-62fdf51b4d3a', + event: 'Add_Audience', + context: { + externalId: [ + { + type: 'FB_CUSTOM_AUDIENCE-23848494844100489', + identifierType: 'EMAIL', + }, + ], + mappedToDestination: 'true', + sources: { + job_run_id: 'cgiiurt8um7k7n5dq480', + task_run_id: 'cgiiurt8um7k7n5dq48g', + job_id: '2MUWghI7u85n91dd1qzGyswpZan', + version: '895/merge', + }, + }, + recordId: '725ad989-6750-4839-b46b-0ddb3b8e5aa2/1/10', + rudderId: '85c49666-c628-4835-937b-8f1d9ee7a724', + properties: { + listData: { + add: [ + { + EMAIL: 'dede@gmail.com', + FN: 'vishwa', + }, + { + EMAIL: 'fchsjjn@gmail.com', + FN: 'hskks', + }, + { + EMAIL: 'fghjnbjk@gmail.com', + FN: 'ghfry', + }, + { + EMAIL: 'gvhjkk@gmail.com', + FN: 'hbcwqe', + }, + { + EMAIL: 'qsdwert@egf.com', + FN: 'dsfds', + }, + { + EMAIL: 'ascscxsaca@com', + FN: 'scadscdvcda', + }, + { + EMAIL: 'abc@gmail.com', + FN: 'subscribed', + }, + { + EMAIL: 'ddwnkl@gmail.com', + FN: 'subscribed', + }, + { + EMAIL: 'subscribed@eewrfrd.com', + FN: 'pending', + }, + { + EMAIL: 'acsdvdf@ddfvf.com', + FN: 'pending', + }, + ], + }, + }, + type: 'audienceList', + anonymousId: '63228b51-394e-4ca2-97a0-427f6187480b', + }, + destination: { + Config: { + accessToken: 'ABC', + disableFormat: false, + isHashRequired: true, + isRaw: false, + maxUserCount: '50', + oneTrustCookieCategories: [], + skipVerify: false, + subType: 'NA', + type: 'NA', + userSchema: ['EMAIL'], + }, + secretConfig: {}, + ID: '1mMy5cqbtfuaKZv1IhVQKnBdVwe', + name: 'FB_CUSTOM_AUDIENCE', + enabled: true, + workspaceId: '1TSN08muJTZwH8iCDmnnRt1pmLd', + deleted: false, + createdAt: '2020-12-30T08:39:32.005Z', + updatedAt: '2021-02-03T16:22:31.374Z', + destinationDefinition: { + id: '1aIXqM806xAVm92nx07YwKbRrO9', + name: 'FB_CUSTOM_AUDIENCE', + displayName: 'FB_CUSTOM_AUDIENCE', + createdAt: '2020-04-09T09:24:31.794Z', + updatedAt: '2021-01-11T11:03:28.103Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + }, + metadata: { + jobId: 2, + }, + }, + { + message: { + sentAt: '2023-03-30 06:42:55.991938402 +0000 UTC', + userId: '2MUWghI7u85n91dd1qzGyswpZan-2MUWqbQqvctyfMGqU9QCNadpKNy', + channel: 'sources', + messageId: '4d906837-031d-4d34-b97a-62fdf51b4d3a', + event: 'Add_Audience', + context: { + destinationFields: + 'EMAIL, DOBM, DOBD, DOBY, PHONE, GEN, FI, MADID, ZIP, ST, COUNTRY', + externalId: [ + { + type: 'FB_CUSTOM_AUDIENCE-aud1', + identifierType: 'EMAIL', + }, + ], + mappedToDestination: 'true', + sources: { + job_run_id: 'cgiiurt8um7k7n5dq480', + task_run_id: 'cgiiurt8um7k7n5dq48g', + job_id: '2MUWghI7u85n91dd1qzGyswpZan', + version: '895/merge', + }, + }, + recordId: '725ad989-6750-4839-b46b-0ddb3b8e5aa2/1/10', + rudderId: '85c49666-c628-4835-937b-8f1d9ee7a724', + properties: { + listData: { + add: [ + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + { + EMAIL: 'shrouti@abc.com', + DOBM: '2', + DOBD: '13', + DOBY: '2013', + PHONE: '@09432457768', + GEN: 'female', + FI: 'Ms.', + MADID: 'ABC', + ZIP: 'ZIP ', + ST: '123abc ', + COUNTRY: 'IN', + }, + ], + }, + }, + type: 'audienceList', + anonymousId: '63228b51-394e-4ca2-97a0-427f6187480b', + }, + destination: { + Config: { + accessToken: 'ABC', + disableFormat: false, + isHashRequired: false, + isRaw: true, + maxUserCount: '1000', + oneTrustCookieCategories: [], + skipVerify: false, + subType: 'NA', + type: 'NA', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + }, + secretConfig: {}, + ID: '1mMy5cqbtfuaKZv1IhVQKnBdVwe', + name: 'FB_CUSTOM_AUDIENCE', + enabled: true, + workspaceId: '1TSN08muJTZwH8iCDmnnRt1pmLd', + deleted: false, + createdAt: '2020-12-30T08:39:32.005Z', + updatedAt: '2021-02-03T16:22:31.374Z', + destinationDefinition: { + id: '1aIXqM806xAVm92nx07YwKbRrO9', + name: 'FB_CUSTOM_AUDIENCE', + displayName: 'FB_CUSTOM_AUDIENCE', + createdAt: '2020-04-09T09:24:31.794Z', + updatedAt: '2021-01-11T11:03:28.103Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + }, + metadata: { + jobId: 2, + }, + }, + ], + destType: 'fb_custom_audience', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/23848494844100489/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + schema: ['EMAIL', 'FN'], + data: [ + ['7625cab24612c37df6d2f724721bb38a25095d0295e29b807238ee188b8aca43', null], + ['b2b4abadd72190af54305c0d3abf1977fec4935016bb13ff28040d5712318dfd', null], + ['c4b007d1c3c9a5d31bd4082237a913e8e0db1767225c2a5ef33be2716df005fa', null], + ['94639be1bd9f17c05820164e9d71ef78558f117a9e8bfab43cf8015e08aa0b27', null], + ['39b456cfb4bb07f9e6bb18698aa173171ca49c731fccc4790e9ecea808d24ae6', null], + ['769f73387add781a481ca08300008a08fb2f1816aaed196137efc2e05976d711', null], + ['48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08', null], + ['da2d431121cd10578fd81f8f80344b06db59ea2d05a7b5d27536c8789ddae8f0', null], + ['b100c2ec0718fe6b4805b623aeec6710719d042ceea55f5c8135b010ec1c7b36', null], + ['0c1d1b0ba547a742013366d6fbc8f71dd77f566d94e41ed9f828a74b96928161', null], + ], + }, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accessToken: 'ABC', + disableFormat: false, + isHashRequired: true, + isRaw: false, + maxUserCount: '50', + oneTrustCookieCategories: [], + skipVerify: false, + subType: 'NA', + type: 'NA', + userSchema: ['EMAIL'], + }, + secretConfig: {}, + ID: '1mMy5cqbtfuaKZv1IhVQKnBdVwe', + name: 'FB_CUSTOM_AUDIENCE', + enabled: true, + workspaceId: '1TSN08muJTZwH8iCDmnnRt1pmLd', + deleted: false, + createdAt: '2020-12-30T08:39:32.005Z', + updatedAt: '2021-02-03T16:22:31.374Z', + destinationDefinition: { + id: '1aIXqM806xAVm92nx07YwKbRrO9', + name: 'FB_CUSTOM_AUDIENCE', + displayName: 'FB_CUSTOM_AUDIENCE', + createdAt: '2020-04-09T09:24:31.794Z', + updatedAt: '2021-01-11T11:03:28.103Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + }, + }, + { + destination: { + Config: { + accessToken: 'ABC', + disableFormat: false, + isHashRequired: true, + isRaw: false, + maxUserCount: '50', + oneTrustCookieCategories: [], + skipVerify: false, + subType: 'NA', + type: 'NA', + userSchema: ['EMAIL'], + }, + secretConfig: {}, + ID: '1mMy5cqbtfuaKZv1IhVQKnBdVwe', + name: 'FB_CUSTOM_AUDIENCE', + enabled: true, + workspaceId: '1TSN08muJTZwH8iCDmnnRt1pmLd', + deleted: false, + createdAt: '2020-12-30T08:39:32.005Z', + updatedAt: '2021-02-03T16:22:31.374Z', + destinationDefinition: { + id: '1aIXqM806xAVm92nx07YwKbRrO9', + name: 'FB_CUSTOM_AUDIENCE', + displayName: 'FB_CUSTOM_AUDIENCE', + createdAt: '2020-04-09T09:24:31.794Z', + updatedAt: '2021-01-11T11:03:28.103Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + }, + error: + 'context.destinationFields is required property for events mapped to destination ', + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 400, + statTags: { + destType: 'FB_CUSTOM_AUDIENCE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://graph.facebook.com/v17.0/aud1/users', + headers: {}, + params: { + access_token: 'ABC', + payload: { + is_raw: true, + schema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + data: [ + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + [ + 'shrouti@abc.com', + '2', + '13', + '2013', + '@09432457768', + 'female', + 'Ms.', + 'ABC', + 'ZIP ', + '123abc ', + 'IN', + ], + ], + }, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accessToken: 'ABC', + disableFormat: false, + isHashRequired: false, + isRaw: true, + maxUserCount: '1000', + oneTrustCookieCategories: [], + skipVerify: false, + subType: 'NA', + type: 'NA', + userSchema: [ + 'EMAIL', + 'DOBM', + 'DOBD', + 'DOBY', + 'PHONE', + 'GEN', + 'FI', + 'MADID', + 'ZIP', + 'ST', + 'COUNTRY', + ], + }, + secretConfig: {}, + ID: '1mMy5cqbtfuaKZv1IhVQKnBdVwe', + name: 'FB_CUSTOM_AUDIENCE', + enabled: true, + workspaceId: '1TSN08muJTZwH8iCDmnnRt1pmLd', + deleted: false, + createdAt: '2020-12-30T08:39:32.005Z', + updatedAt: '2021-02-03T16:22:31.374Z', + destinationDefinition: { + id: '1aIXqM806xAVm92nx07YwKbRrO9', + name: 'FB_CUSTOM_AUDIENCE', + displayName: 'FB_CUSTOM_AUDIENCE', + createdAt: '2020-04-09T09:24:31.794Z', + updatedAt: '2021-01-11T11:03:28.103Z', + }, + transformations: [], + isConnectionEnabled: true, + isProcessorEnabled: true, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/firehose/processor/data.ts b/test/integrations/destinations/firehose/processor/data.ts new file mode 100644 index 0000000000..0fad78ccc5 --- /dev/null +++ b/test/integrations/destinations/firehose/processor/data.ts @@ -0,0 +1,877 @@ +export const data = [ + { + name: 'firehose', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: 'track', + to: 'ruchira-test-firehose', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { email: 'ruchira@rudderlabs.com' }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { density: 2 }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { All: true }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '00000000000000000000000000', + deliveryStreamMapTo: 'ruchira-test-firehose', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'firehose', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: 'product added', + to: 'ruchira-test-firehose', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { email: 'ruchira@rudderlabs.com' }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { density: 2 }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { All: true }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '00000000000000000000000000', + deliveryStreamMapTo: 'ruchira-test-firehose', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'firehose', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: '*', + to: 'ruchira-test-firehose', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { email: 'ruchira@rudderlabs.com' }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { density: 2 }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { All: true }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '00000000000000000000000000', + deliveryStreamMapTo: 'ruchira-test-firehose', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'firehose', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: 'test event', + to: 'ruchira-test-firehose', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'No delivery stream set for this event', + statTags: { + destType: 'FIREHOSE', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'firehose', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: '*', + to: 'ruchira-test-firehose', + }, + { + from: 'track', + to: 'ruchira-test-firehose-1', + }, + { + from: 'product added', + to: 'ruchira-test-firehose-2', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '00000000000000000000000000', + deliveryStreamMapTo: 'ruchira-test-firehose-2', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'firehose', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: '*', + to: 'ruchira-test-firehose', + }, + { + from: 'track', + to: 'ruchira-test-firehose-1', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '00000000000000000000000000', + deliveryStreamMapTo: 'ruchira-test-firehose-1', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'firehose', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + region: 'us-east-1', + accessKeyID: 'abc', + accessKey: 'xyz', + mapEvents: [ + { + from: '*', + to: 'ruchira-test-firehose', + }, + { + from: 'product added', + to: 'ruchira-test-firehose-1', + }, + ], + }, + DestinationDefinition: { + DisplayName: 'firehose', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'FIREHOSE', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Braze', + Transformations: [], + }, + metadata: { + sourceType: 'metadata.sourceType', + destinationType: 'metadata.destinationType', + k8_namespace: 'metadata.namespace', + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: '', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + destinationType: 'metadata.destinationType', + k8_namespace: 'metadata.namespace', + sourceType: 'metadata.sourceType', + }, + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: '', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '00000000000000000000000000', + deliveryStreamMapTo: 'ruchira-test-firehose', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/googlepubsub/processor/data.ts b/test/integrations/destinations/googlepubsub/processor/data.ts new file mode 100644 index 0000000000..0dffa57839 --- /dev/null +++ b/test/integrations/destinations/googlepubsub/processor/data.ts @@ -0,0 +1,1317 @@ +export const data = [ + { + name: 'googlepubsub', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'test', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '123456', + topicId: 'test', + attributes: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'product added', + to: 'test', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '123456', + topicId: 'test', + attributes: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: '*', + to: 'test', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + userId: '123456', + topicId: 'test', + attributes: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'track', + event: 'product added', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'test event', + to: 'test', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'No topic set for this event', + statTags: { + destType: 'GOOGLEPUBSUB', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: '', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'No topic set for this event', + statTags: { + destType: 'GOOGLEPUBSUB', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: '', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'No topic set for this event', + statTags: { + destType: 'GOOGLEPUBSUB', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'test', + }, + { + from: '*', + to: 'test a', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'test', + attributes: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'test', + }, + { + from: '*', + to: 'test a', + }, + { + from: 'product added', + to: 'test b', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'test b', + attributes: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'Test-Topic', + }, + ], + eventToAttributesMap: [ + { + from: 'track', + to: 'name', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'Test-Topic', + attributes: { + name: 'Pizza', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'Test-Topic', + }, + ], + eventToAttributesMap: [ + { + from: 'track', + to: 'url', + }, + { + from: 'track', + to: 'title', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'Test-Topic', + attributes: { + url: 'https://dominos.com', + title: 'Pizza', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'Test-Topic', + }, + ], + eventToAttributesMap: [ + { + from: 'track', + to: 'url', + }, + { + from: 'track', + to: 'title', + }, + { + from: 'product added', + to: 'referrer', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + type: 'track', + event: 'product added', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'Test-Topic', + attributes: { + referrer: 'https://google.com', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + nestedObject: { + this: 'will be picked', + }, + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'Test-Topic', + }, + ], + eventToAttributesMap: [ + { + from: 'track', + to: 'nestedObject.this', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + nestedObject: { + this: 'will be picked', + }, + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'Test-Topic', + attributes: { + this: 'will be picked', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlepubsub', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + nestedObject: { + this: 'will be picked', + }, + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'Test-Topic', + }, + ], + eventToAttributesMap: [ + { + from: 'track', + to: 'properties.nestedObject.this', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + message: { + sentAt: '2020-08-28T15:11:56.167Z', + category: 'Food', + messageId: + 'node-cfc5fb7ec83b82bc29e16336a11331e2-0ba97212-0f6e-44cd-a0f1-c20b8b7a7cba', + anonymousId: 'abcdeeeeeeeexxxx111', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + originalTimestamp: '2020-08-28T15:11:56.162Z', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + nestedObject: { + this: 'will be picked', + }, + }, + type: 'track', + name: 'Pizza', + _metadata: { + nodeVersion: '10.22.0', + }, + }, + userId: 'abcdeeeeeeeexxxx111', + topicId: 'Test-Topic', + attributes: { + this: 'will be picked', + }, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/googlesheets/processor/data.ts b/test/integrations/destinations/googlesheets/processor/data.ts new file mode 100644 index 0000000000..349ea7cb9e --- /dev/null +++ b/test/integrations/destinations/googlesheets/processor/data.ts @@ -0,0 +1,1074 @@ +export const data = [ + { + name: 'googlesheets', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: 'OS-X', + version: '19.02.3', + }, + screen: { + density: 2, + }, + traits: { + userId: 'sheetuser001', + firstName: 'James', + lastName: 'Doe', + address: { + city: 'Kolkata', + country: 'India', + postalCode: '789003', + state: 'WB', + }, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + type: 'identify', + traits: { + anonymousId: 'anon_id', + email: 'jamesDoe@gmail.com', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '84e26acc-56a5-4835-8233-591137fca468', + }, + '1': { + attributeKey: 'First Name', + attributeValue: 'James', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: 'Doe', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '1614775793', + }, + '4': { + attributeKey: 'City', + attributeValue: 'kolkata', + }, + '5': { + attributeKey: 'Country', + attributeValue: 'India', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '7': { + attributeKey: 'Offer', + attributeValue: '', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: '', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: '', + }, + '10': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '11': { + attributeKey: 'App Build', + attributeValue: '1.0.0', + }, + '12': { + attributeKey: 'App Name', + attributeValue: 'RudderLabs JavaScript SDK', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'RudderLabs JavaScript SDK', + }, + '14': { + attributeKey: 'IP', + attributeValue: '0.0.0.0', + }, + }, + }, + spreadSheet: 'rudder_sheet', + spreadSheetId: 'rudder_sheet_id', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlesheets', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + type: 'track', + userId: 'userTest004', + event: 'Added to Cart', + properties: { + name: 'HomePage', + revenue: 5.99, + value: 5.5, + offer: 'Discount', + Sale: false, + }, + context: { + ip: '14.5.67.21', + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '', + }, + '1': { + attributeKey: 'First Name', + attributeValue: '', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: '', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '', + }, + '4': { + attributeKey: 'City', + attributeValue: '', + }, + '5': { + attributeKey: 'Country', + attributeValue: '', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: 5.99, + }, + '7': { + attributeKey: 'Offer', + attributeValue: 'Discount', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: '', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: '', + }, + '10': { + attributeKey: 'Revenue', + attributeValue: 5.99, + }, + '11': { + attributeKey: 'App Build', + attributeValue: '1', + }, + '12': { + attributeKey: 'App Name', + attributeValue: 'RudderAndroidClient', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'com.rudderstack.android.sdk.core', + }, + '14': { + attributeKey: 'IP', + attributeValue: '14.5.67.21', + }, + }, + }, + spreadSheet: 'rudder_sheet', + spreadSheetId: 'rudder_sheet_id', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlesheets', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + type: 'page', + userId: 'userTest004', + anonymousId: 'anon-id-new', + name: '1mg Cart', + properties: { + title: 'Cart', + path: '/', + 'Cart Value': 7800, + revenue: 7500, + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '', + }, + '1': { + attributeKey: 'First Name', + attributeValue: '', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: '', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '', + }, + '4': { + attributeKey: 'City', + attributeValue: '', + }, + '5': { + attributeKey: 'Country', + attributeValue: '', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: 7500, + }, + '7': { + attributeKey: 'Offer', + attributeValue: '', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: 'Cart', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: 7800, + }, + '10': { + attributeKey: 'Revenue', + attributeValue: 7500, + }, + '11': { + attributeKey: 'App Build', + attributeValue: '', + }, + '12': { + attributeKey: 'App Name', + attributeValue: '', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'http', + }, + '14': { + attributeKey: 'IP', + attributeValue: '14.5.67.21', + }, + }, + }, + spreadSheet: 'rudder_sheet', + spreadSheetId: 'rudder_sheet_id', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlesheets', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + type: 'page', + userId: 'userTest005', + anonymousId: 'anon-id-test', + name: 'Viewed Home Screen', + properties: { + title: 'Home', + path: '/home', + }, + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '', + }, + '1': { + attributeKey: 'First Name', + attributeValue: '', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: '', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '', + }, + '4': { + attributeKey: 'City', + attributeValue: '', + }, + '5': { + attributeKey: 'Country', + attributeValue: '', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '7': { + attributeKey: 'Offer', + attributeValue: '', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: 'Home', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: '', + }, + '10': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '11': { + attributeKey: 'App Build', + attributeValue: '', + }, + '12': { + attributeKey: 'App Name', + attributeValue: '', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'http', + }, + '14': { + attributeKey: 'IP', + attributeValue: '14.5.67.21', + }, + }, + }, + spreadSheet: 'rudder_sheet', + spreadSheetId: 'rudder_sheet_id', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlesheets', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + type: 'screen', + name: 'Trello home Screen', + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '', + }, + '1': { + attributeKey: 'First Name', + attributeValue: '', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: '', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '', + }, + '4': { + attributeKey: 'City', + attributeValue: '', + }, + '5': { + attributeKey: 'Country', + attributeValue: '', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '7': { + attributeKey: 'Offer', + attributeValue: '', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: '', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: '', + }, + '10': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '11': { + attributeKey: 'App Build', + attributeValue: '', + }, + '12': { + attributeKey: 'App Name', + attributeValue: '', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'http', + }, + '14': { + attributeKey: 'IP', + attributeValue: '14.5.67.21', + }, + }, + }, + spreadSheet: 'rudder_sheet', + spreadSheetId: 'rudder_sheet_id', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'googlesheets', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + }, + }, + message: { + type: 'screen', + name: 'Trello home Screen', + context: { + ip: '14.5.67.21', + library: { + name: 'http', + }, + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'No Spread Sheet set for this event', + statTags: { + destType: 'GOOGLESHEETS', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/googlesheets/router/data.ts b/test/integrations/destinations/googlesheets/router/data.ts new file mode 100644 index 0000000000..20fe270e5f --- /dev/null +++ b/test/integrations/destinations/googlesheets/router/data.ts @@ -0,0 +1,482 @@ +export const data = [ + { + name: 'googlesheets', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { name: 'RudderLabs JavaScript SDK', version: '1.0.0' }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { name: 'OS-X', version: '19.02.3' }, + screen: { density: 2 }, + traits: { + userId: 'sheetuser001', + firstName: 'James', + lastName: 'Doe', + address: { + city: 'Kolkata', + country: 'India', + postalCode: '789003', + state: 'WB', + }, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + type: 'identify', + traits: { + anonymousId: 'anon_id', + email: 'jamesDoe@gmail.com', + name: 'James Doe', + phone: '92374162212', + gender: 'M', + employed: true, + birthday: '1614775793', + education: 'Science', + graduate: true, + married: true, + customerType: 'Prime', + custom_tags: ['Test_User', 'Interested_User', 'DIY_Hobby'], + custom_mappings: { + Office: 'Trastkiv', + Country: 'Russia', + }, + address: { + city: 'kolkata', + country: 'India', + postalCode: 789223, + state: 'WB', + street: '', + }, + }, + integrations: { All: true }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + metadata: { + jobId: 1, + }, + }, + { + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + message: { + type: 'track', + userId: 'userTest004', + event: 'Added to Cart', + properties: { + name: 'HomePage', + revenue: 5.99, + value: 5.5, + offer: 'Discount', + Sale: false, + }, + context: { + ip: '14.5.67.21', + app: { + build: '1', + name: 'RudderAndroidClient', + namespace: 'com.rudderstack.demo.android', + version: '1.0', + }, + device: { + id: '7e32188a4dab669f', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '0.1.4', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { name: 'Android', version: '9' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + }, + timestamp: '2020-02-02T00:23:09.544Z', + }, + metadata: { + jobId: 2, + }, + }, + ], + destType: 'googlesheets', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + batch: [ + { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '84e26acc-56a5-4835-8233-591137fca468', + }, + '1': { + attributeKey: 'First Name', + attributeValue: 'James', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: 'Doe', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '1614775793', + }, + '4': { + attributeKey: 'City', + attributeValue: 'kolkata', + }, + '5': { + attributeKey: 'Country', + attributeValue: 'India', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '7': { + attributeKey: 'Offer', + attributeValue: '', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: '', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: '', + }, + '10': { + attributeKey: 'Revenue', + attributeValue: '', + }, + '11': { + attributeKey: 'App Build', + attributeValue: '1.0.0', + }, + '12': { + attributeKey: 'App Name', + attributeValue: 'RudderLabs JavaScript SDK', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'RudderLabs JavaScript SDK', + }, + '14': { + attributeKey: 'IP', + attributeValue: '0.0.0.0', + }, + }, + }, + { + message: { + '0': { + attributeKey: 'messageId', + attributeValue: '', + }, + '1': { + attributeKey: 'First Name', + attributeValue: '', + }, + '2': { + attributeKey: 'Last Name', + attributeValue: '', + }, + '3': { + attributeKey: 'Birthday', + attributeValue: '', + }, + '4': { + attributeKey: 'City', + attributeValue: '', + }, + '5': { + attributeKey: 'Country', + attributeValue: '', + }, + '6': { + attributeKey: 'Revenue', + attributeValue: 5.99, + }, + '7': { + attributeKey: 'Offer', + attributeValue: 'Discount', + }, + '8': { + attributeKey: 'Title Page', + attributeValue: '', + }, + '9': { + attributeKey: 'Cart Value', + attributeValue: '', + }, + '10': { + attributeKey: 'Revenue', + attributeValue: 5.99, + }, + '11': { + attributeKey: 'App Build', + attributeValue: '1', + }, + '12': { + attributeKey: 'App Name', + attributeValue: 'RudderAndroidClient', + }, + '13': { + attributeKey: 'Library Name', + attributeValue: 'com.rudderstack.android.sdk.core', + }, + '14': { + attributeKey: 'IP', + attributeValue: '14.5.67.21', + }, + }, + }, + ], + spreadSheetId: 'rudder_sheet_id', + spreadSheet: 'rudder_sheet', + }, + metadata: [ + { + jobId: 1, + }, + { + jobId: 2, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + credentials: '{ sheets credentials }', + eventKeyMap: [ + { + from: 'firstName', + to: 'First Name', + }, + { + from: 'lastName', + to: 'Last Name', + }, + { + from: 'birthday', + to: 'Birthday', + }, + { + from: 'address.city', + to: 'City', + }, + { + from: 'address.country', + to: 'Country', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'offer', + to: 'Offer', + }, + { + from: 'title', + to: 'Title Page', + }, + { + from: 'Cart Value', + to: 'Cart Value', + }, + { + from: 'revenue', + to: 'Revenue', + }, + { + from: 'context.app.build', + to: 'App Build', + }, + { + from: 'context.app.name', + to: 'App Name', + }, + { + from: 'context.library.name', + to: 'Library Name', + }, + { + from: 'context.ip', + to: 'IP', + }, + ], + sheetId: 'rudder_sheet_id', + sheetName: 'rudder_sheet', + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/heap/processor/data.ts b/test/integrations/destinations/heap/processor/data.ts new file mode 100644 index 0000000000..be4f9c87bf --- /dev/null +++ b/test/integrations/destinations/heap/processor/data.ts @@ -0,0 +1,896 @@ +export const data = [ + { + name: 'heap', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'fca2e71a-5d30-48e1-ba45-761c16e3820f', + originalTimestamp: '2020-01-16T13:21:59.076Z', + receivedAt: '2020-01-16T18:52:03.871+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:22:03.85Z', + timestamp: '2020-01-16T18:51:59.097+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/add_user_properties', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + properties: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + app_id: '', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-16T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + app_id: '', + timestamp: '2020-01-16T18:53:20.866+05:30', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: false, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'fca2e71a-5d30-48e1-ba45-761c16e3820f', + originalTimestamp: '2020-01-16T13:21:59.076Z', + receivedAt: '2020-01-16T18:52:03.871+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:22:03.85Z', + timestamp: '2020-01-16T18:51:59.097+05:30', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'invalid message type for heap', + statTags: { + destType: 'HEAP', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: false, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-16T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'page', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'message type page not supported for heap', + statTags: { + destType: 'HEAP', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + idempotencyKey: '1234', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2021-02-16T18:53:20.866+05:30', + originalTimestamp: '2021-02-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + timestamp: '2021-02-16T18:53:20.866+05:30', + idempotency_key: '1234', + app_id: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-17T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + idempotencyKey: '1234', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + timestamp: '2020-01-16T18:53:20.866+05:30', + idempotency_key: '1234', + app_id: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-17T13:23:20.844Z', + properties: { + Location: { + City: 'Los Angeles', + State: 'CA', + }, + hobbies: ['Music', 'Running'], + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + 'Location.City': 'Los Angeles', + 'Location.State': 'CA', + 'hobbies[0]': 'Music', + 'hobbies[1]': 'Running', + }, + timestamp: '2020-01-16T18:53:20.866+05:30', + app_id: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'heap', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-17T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + timestamp: '2020-01-16T18:53:20.866+05:30', + app_id: '', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/heap/router/data.ts b/test/integrations/destinations/heap/router/data.ts new file mode 100644 index 0000000000..24efbf4b15 --- /dev/null +++ b/test/integrations/destinations/heap/router/data.ts @@ -0,0 +1,815 @@ +export const data = [ + { + name: 'heap', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'fca2e71a-5d30-48e1-ba45-761c16e3820f', + originalTimestamp: '2020-01-16T13:21:59.076Z', + receivedAt: '2020-01-16T18:52:03.871+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:22:03.85Z', + timestamp: '2020-01-16T18:51:59.097+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-16T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-16T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + idempotencyKey: '1234', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + ], + destType: 'heap', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/add_user_properties', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + properties: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + app_id: '', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + app_id: '', + timestamp: '2020-01-16T18:53:20.866+05:30', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + app_id: '', + timestamp: '2020-01-16T18:53:20.866+05:30', + idempotency_key: '1234', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + }, + ], + }, + }, + }, + }, + { + name: 'heap', + description: 'Test 1', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'fca2e71a-5d30-48e1-ba45-761c16e3820f', + originalTimestamp: '2020-01-16T13:21:59.076Z', + receivedAt: '2020-01-16T18:52:03.871+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:22:03.85Z', + timestamp: '2020-01-16T18:51:59.097+05:30', + type: 'identify', + userId: 'sampath', + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-16T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'track', + userId: 'sampath', + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 4, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + messageId: 'fca2e71a-5d30-48e1-ba45-761c16e3820f', + originalTimestamp: '2020-01-16T13:21:59.076Z', + receivedAt: '2020-01-16T18:52:03.871+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:22:03.85Z', + timestamp: '2020-01-16T18:51:59.097+05:30', + userId: 'sampath', + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: { + jobId: 5, + }, + message: { + anonymousId: 'sampath', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', + }, + event: 'Send Transactional Email', + integrations: { + All: true, + }, + messageId: 'c0c5b892-0d54-449f-b85f-ebb39ff04e67', + originalTimestamp: '2020-01-16T13:23:20.844Z', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + receivedAt: '2020-01-16T18:53:23.804+05:30', + request_ip: '[::1]:62312', + sentAt: '2020-01-16T13:23:23.782Z', + timestamp: '2020-01-16T18:53:20.866+05:30', + type: 'page', + userId: 'sampath', + }, + }, + ], + destType: 'heap', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/add_user_properties', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + properties: { + anonymousId: 'sampath', + email: 'sampath@gmail.com', + }, + app_id: '', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://heapanalytics.com/api/track', + headers: { + 'Content-Type': 'application/json', + Accept: 'application/json', + }, + params: {}, + body: { + JSON: { + identity: 'sampath', + event: 'Send Transactional Email', + properties: { + subject: 'Welcome to My App!', + variation: 'A', + }, + app_id: '', + timestamp: '2020-01-16T18:53:20.866+05:30', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sampath', + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: [ + { + jobId: 4, + }, + ], + batched: false, + statusCode: 400, + error: 'invalid message type for heap', + statTags: { + destType: 'HEAP', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + }, + { + destination: { + Config: { + appId: '', + }, + DestinationDefinition: { + DisplayName: 'Heap.io', + ID: '1WTbl0l5GjOQKOvfmcGwk0T49kV', + Name: 'HEAP', + }, + Enabled: true, + ID: '1WTcDSEOE437e4ePH10BJNELXmE', + Name: 'heap test', + Transformations: [], + }, + metadata: [ + { + jobId: 5, + }, + ], + batched: false, + statusCode: 400, + error: 'message type page not supported for heap', + statTags: { + destType: 'HEAP', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/impact/processor/data.ts b/test/integrations/destinations/impact/processor/data.ts new file mode 100644 index 0000000000..e467956d62 --- /dev/null +++ b/test/integrations/destinations/impact/processor/data.ts @@ -0,0 +1,2357 @@ +export const data = [ + { + name: 'impact', + description: 'Identify Call', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'identify', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: true, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + DeviceOs: 'ios', + AndroidId: 'id', + EventDate: 'NOW', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'user123', + PropertyId: '2323', + DeviceOsVer: '1.12.3', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + CustomerEmail: '0c57fe03e81357df3acc1340bc9e353688e8f69e', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://trkapi.impact.com/PageLoad', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Identify Call when enableIdentifyEvents is disabled from config', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'identify', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'identify events are disabled from Config', + statTags: { + destType: 'IMPACT', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Account SID is empty', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'identify', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: '', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: true, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'accountSID : are required fields', + statTags: { + destType: 'IMPACT', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'API Key is empty', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'identify', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'jskafsdhgfbjcdsxzjhfnerscd', + apiKey: '', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: true, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'apiKey : are required fields', + statTags: { + destType: 'IMPACT', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'campaignId is empty', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'identify', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'jskafsdhgfbjcdsxzjhfnerscd', + apiKey: 'hjsfbnrrcldkbnfsjknfdkfjne', + campaignId: '', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: true, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'campaignId : are required fields', + statTags: { + destType: 'IMPACT', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Track Call with products array to test conversion endpoint', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + products: [ + { + brand: 'zara', + category: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Track Call with products array without any custom products mapping', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Product Purchased', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + products: [ + { + brand: 'zara', + category: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: '', + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Product Purchased', + ItemQuantity1: 1, + ItemCategory1: 'wearables', + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: + 'Track Call with products array to test conversion endpoint with a custom products mapping', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + products: [ + { + brand: 'zara', + variant: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemCategory1: 'wearables', + ItemPrice1: 332, + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: + 'Track Call with products array to test conversion endpoint with a custom products mapping and custom property mapping', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + profit: 434, + products: [ + { + brand: 'zara', + variant: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + Money1: 434, + OrderId: '9217374917471', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemCategory1: 'wearables', + ItemPrice1: 332, + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Track Call with products array to test conversion endpoint with OS as android', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + profit: 434, + products: [ + { + brand: 'zara', + variant: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: 'Android', + version: '9', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + device: { + id: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + advertisingId: '435o4GRlm', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + Money1: 434, + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + GoogAId: '435o4GRlm', + OrderId: '9217374917471', + DeviceOs: 'Android', + ItemSku1: 'G-32', + AndroidId: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + DeviceOsVer: '9', + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemCategory1: 'wearables', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Track Call with products array to test conversion endpoint with OS as ios', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + profit: 434, + products: [ + { + brand: 'zara', + variant: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: 'iOS', + version: '15.2', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + device: { + id: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + advertisingId: '435o4GRlm', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppleIfa: '435o4GRlm', + AppleIfv: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + Money1: 434, + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + DeviceOs: 'iOS', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + DeviceOsVer: '15.2', + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemCategory1: 'wearables', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Page Call', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'page', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: true, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + DeviceOs: 'ios', + AndroidId: 'id', + EventDate: 'NOW', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'user123', + PropertyId: '2323', + DeviceOsVer: '1.12.3', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + CustomerEmail: '0c57fe03e81357df3acc1340bc9e353688e8f69e', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://trkapi.impact.com/PageLoad', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Screen Call', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'screen', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: true, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + DeviceOs: 'ios', + AndroidId: 'id', + EventDate: 'NOW', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'user123', + PropertyId: '2323', + DeviceOsVer: '1.12.3', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + CustomerEmail: '0c57fe03e81357df3acc1340bc9e353688e8f69e', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://trkapi.impact.com/PageLoad', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Unsupported message type', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'group', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + products: [ + { + brand: 'zara', + category: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Event type group is not supported', + statTags: { + destType: 'IMPACT', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Event type is empty', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: '', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + products: [ + { + brand: 'zara', + category: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Event type is required', + statTags: { + destType: 'IMPACT', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Track Call with products array to test conversion endpoint', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + brand: 'zara', + category: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Purchased', + }, + ], + installEventNames: [ + { + eventName: 'App Installed', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemCategory1: 'wearables', + ItemQuantity1: 1, + ItemPromoCode1: '10OFF-ROCKET', + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'impact', + description: 'Track Call with products array to test conversion endpoint with event mapping', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + event: 'Product Ordered', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + profit: 434, + products: [ + { + brand: 'zara', + variant: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: 'iOS', + version: '15.2', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + device: { + id: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + advertisingId: '435o4GRlm', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [ + { + eventName: 'Product Ordered', + }, + ], + installEventNames: [ + { + eventName: 'Product Ordered', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppleIfa: '435o4GRlm', + AppleIfv: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + Money1: 434, + AppName: 'RudderLabs JavaScript SDK', + OrderId: '9217374917471', + DeviceOs: 'iOS', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + DeviceOsVer: '15.2', + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Product Ordered', + ItemCategory1: 'wearables', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + { + output: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppleIfa: '435o4GRlm', + AppleIfv: '78c53c15-32a1-4b65-adac-bec2d7bb8fab', + Money1: 434, + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + DeviceOs: 'iOS', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + DeviceOsVer: '15.2', + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Product Ordered', + ItemCategory1: 'wearables', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/impact/router/data.ts b/test/integrations/destinations/impact/router/data.ts new file mode 100644 index 0000000000..1e9cd9cc6e --- /dev/null +++ b/test/integrations/destinations/impact/router/data.ts @@ -0,0 +1,330 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: true, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [{ eventName: 'Product Purchased' }], + installEventNames: [{ eventName: 'App Installed' }], + }, + }, + metadata: { + jobId: 1, + }, + message: { + type: 'identify', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'user123', + channel: 'web', + context: { + os: { + name: 'android', + version: '1.12.3', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + traits: { + email: 'user123@email.com', + phone: '+917836362334', + userId: 'user123', + }, + locale: 'en-US', + device: { + token: 'token', + id: 'id', + type: 'ios', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + }, + { + message: { + event: 'Order Completed', + type: 'track', + sentAt: '2021-01-03T17:02:53.195Z', + userId: 'Ujjwalab', + channel: 'web', + properties: { + orderId: '9217374917471', + coupon: '10OFF-ROCKET', + clickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + products: [ + { + brand: 'zara', + category: 'wearables', + name: 'Monopoly', + price: 332, + quantity: 1, + sku: 'G-32', + }, + ], + }, + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.1.11', + namespace: 'com.rudderlabs.javascript', + }, + locale: 'en-US', + screen: { + density: 2, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.11', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + }, + rudderId: '8f8fa6b5-8e24-489c-8e22-61f23f2e364f', + messageId: '2116ef8c-efc3-4ca4-851b-02ee60dad6ff', + anonymousId: '97c46c81-3140-456d-b2a9-690d70aaca35', + originalTimestamp: 'NOW', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [{ eventName: 'Product Purchased' }], + installEventNames: [{ eventName: 'App Installed' }], + }, + }, + }, + ], + destType: 'impact', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + DeviceOs: 'ios', + AndroidId: 'id', + EventDate: 'NOW', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'user123', + PropertyId: '2323', + DeviceOsVer: '1.12.3', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + CustomerEmail: '0c57fe03e81357df3acc1340bc9e353688e8f69e', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: + 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://trkapi.impact.com/PageLoad', + }, + metadata: [ + { + jobId: 1, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'sku', + to: 'ItemSku', + }, + ], + enableIdentifyEvents: true, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [{ eventName: 'Product Purchased' }], + installEventNames: [{ eventName: 'App Installed' }], + }, + }, + }, + { + batchedRequest: [ + { + body: { + XML: {}, + FORM: { + AppVer: '1.1.11', + AppName: 'RudderLabs JavaScript SDK', + ClickId: 'wEWU47yhtzBnU-CTug3:7Wv4UkAzMbzkZ2lTz80', + OrderId: '9217374917471', + ItemSku1: 'G-32', + EventDate: 'NOW', + ItemName1: 'Monopoly', + UserAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:84.0) Gecko/20100101 Firefox/84.0', + AppPackage: '1.0.0', + CampaignId: '23224', + CustomerId: 'Ujjwalab', + ItemBrand1: 'zara', + ItemPrice1: 332, + EventTypeId: '56446', + ImpactAppId: '2323', + DeviceLocale: 'en-US', + EventTypeCode: 'Order Completed', + ItemQuantity1: 1, + OrderPromoCode: '10OFF-ROCKET', + CustomProfileId: '97c46c81-3140-456d-b2a9-690d70aaca35', + }, + JSON: {}, + JSON_ARRAY: {}, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + Authorization: + 'Basic ZGZzZ2VydHJ0ZmYzZXJmYzM0cmZ3ZjpmZ2hzZGZnZWd2Y2VyZ2Z2ZmRmc2Fn', + }, + version: '1', + endpoint: 'https://api.impact.com/Advertisers/dfsgertrtff3erfc34rfwf/Conversions', + }, + ], + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + accountSID: 'dfsgertrtff3erfc34rfwf', + apiKey: 'fghsdfgegvcergfvfdfsag', + campaignId: '23224', + impactAppId: '2323', + eventTypeId: '56446', + enableEmailHashing: true, + rudderToImpactProperty: [ + { + from: 'properties.profit', + to: 'Money1', + }, + ], + productsMapping: [ + { + from: 'variant', + to: 'ItemCategory', + }, + ], + enableIdentifyEvents: false, + enablePageEvents: false, + enableScreenEvents: false, + actionEventNames: [{ eventName: 'Product Purchased' }], + installEventNames: [{ eventName: 'App Installed' }], + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/indicative/processor/data.ts b/test/integrations/destinations/indicative/processor/data.ts new file mode 100644 index 0000000000..706fd25664 --- /dev/null +++ b/test/integrations/destinations/indicative/processor/data.ts @@ -0,0 +1,3284 @@ +export const data = [ + { + name: 'indicative', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + userId: '123456', + type: 'identify', + traits: { + anonymousId: 'anon_id', + email: 'sayan@gmail.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/identify', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + uniqueId: '123456', + properties: { + email: 'sayan@gmail.com', + 'address.city': 'kolkata', + 'address.country': 'India', + 'address.postalCode': 712136, + 'address.state': 'WB', + 'address.street': '', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/alias', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + previousId: 'anon_id', + newId: '123456', + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'sayan@gmail.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/identify', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + uniqueId: '123456', + properties: { + email: 'sayan@gmail.com', + 'address.city': 'kolkata', + 'address.country': 'India', + 'address.postalCode': 712136, + 'address.state': 'WB', + 'address.street': '', + ip: '0.0.0.0', + age: 26, + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/alias', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + previousId: '123456', + newId: '123456', + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + request_ip: '1.1.1.1', + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: '12345', + eventName: 'Page View ApplicationLoaded', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + eventTime: 1571051718299, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + request_ip: '1.1.1.1', + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + name: 'ApplicationLoaded', + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: '12345', + eventName: 'Page View ApplicationLoaded', + properties: { + name: 'ApplicationLoaded', + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + eventTime: 1571051718299, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + request_ip: '1.1.1.1', + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: '12345', + eventName: 'Page View', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + eventTime: 1571051718299, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + request_ip: '1.1.1.1', + type: 'screen', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + name: 'Home', + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: '12345', + eventName: 'Screen View Home', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + eventTime: 1571051718299, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + originalTimestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '79313729-7fe5-4204-963a-dc46f4205e4e', + originalTimestamp: '2020-01-24T06:29:02.366Z', + previousId: 'test_previous_id', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53711', + sentAt: '2020-01-24T06:29:02.366Z', + timestamp: '2020-01-24T11:59:02.403+05:30', + type: 'alias', + userId: 'test_new_user_id', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/alias', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + previousId: 'test_previous_id', + newId: 'test_new_user_id', + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_new_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '79313729-7fe5-4204-963a-dc46f4205e4e', + originalTimestamp: '2020-01-24T06:29:02.366Z', + previousId: 'test_previous_id', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53711', + sentAt: '2020-01-24T06:29:02.366Z', + timestamp: '2020-01-24T11:59:02.403+05:30', + userId: 'test_new_user_id', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message Type is not present. Aborting message.', + statTags: { + destType: 'INDICATIVE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + type: 'group', + traits: { + anonymousId: '123456', + email: 'sayan@gmail.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message type group not supported', + statTags: { + destType: 'INDICATIVE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'test_anon_id', + type: 'identify', + traits: { + anonymousId: 'test_anon_id', + email: 'sayan@gmail.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/identify', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + uniqueId: 'test_anon_id', + properties: { + email: 'sayan@gmail.com', + 'address.city': 'kolkata', + 'address.country': 'India', + 'address.postalCode': 712136, + 'address.state': 'WB', + 'address.street': '', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + userId: 'test_anon_id', + files: {}, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + searchResponse: { + hits: [ + { + Vrm: '026067', + Make: 'AUDI', + Year: 2010, + DName: 'PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH', + Model: 'A5', + Price: 13990, + Mileage: 163000, + DealerId: '1f338e5b-740f-6a38-bee1-ecff97acda69', + Derivative: 'A5 Cabrio 1.8 TFSI Cabrio', + }, + { + Vrm: '4527', + Make: 'AUDI', + Year: 2009, + DName: 'Stephan Walters - Autohaus Walters', + Model: 'A5', + Price: 14450, + Mileage: 99990, + DealerId: '68c7b5ae-8cf0-6595-9fd2-8644b9682838', + Derivative: 'A5 Cabrio 40 TFSI S tronic S line Cabrio', + }, + { + Vrm: '10007', + Make: 'AUDI', + Year: 2017, + DName: 'ps kfz-vertrieb GmbH', + Model: 'A5', + Price: 14580, + Mileage: 151500, + DealerId: 'a107e9a8-ac3c-6790-bb84-052dd5eed5e8', + Derivative: 'A5 Sportback 2.0 TDI ultra S tronic Coupe', + }, + { + Vrm: '031983', + Make: 'AUDI', + Year: 2012, + DName: 'Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt"', + Model: 'A5', + Price: 10980, + Mileage: 197335, + DealerId: '8a574713-2fbe-6f0c-b1a8-39ba7ee683fc', + Derivative: 'A5 2.0 TDI Sportback DPF multitronic Coupe', + }, + { + Vrm: '042012', + Make: 'AUDI', + Year: 2015, + DName: 'Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt"', + Model: 'A5', + Price: 15980, + Mileage: 144205, + DealerId: '8a574713-2fbe-6f0c-b1a8-39ba7ee683fc', + Derivative: 'A5 Coupe 35 TDI S tronic S line Coupe', + }, + { + Vrm: '002743', + Make: 'AUDI', + Year: 2010, + DName: 'Auto Mayer e.K.Inh. Skelcim Imeri', + Model: 'A5', + Price: 13980, + Mileage: 121015, + DealerId: '972258cb-132f-62a9-bd31-e02f9f70fa7b', + Derivative: 'A5 Cabrio 2.0 TDI DPF Cabrio', + }, + { + Vrm: '205536_3895', + Make: 'AUDI', + Year: 2011, + DName: 'Autohaus Löbau GmbH', + Model: 'A5', + Price: 12790, + Mileage: 89236, + DealerId: '9e697219-293e-63a0-884a-2d03f77bbbef', + Derivative: 'A5 2.0 TDI Sportback DPF Coupe', + }, + { + Vrm: '116265', + Make: 'AUDI', + Year: 2016, + DName: 'Elspass Autoland GmbH & Co. KG', + Model: 'A1', + Price: 14690, + Mileage: 42800, + DealerId: '00c1bf3f-b19d-6198-a509-c7f2ff73c29a', + Derivative: 'A1 1.0 TFSI ultra Limousine', + }, + { + Vrm: '010159', + Make: 'AUDI', + Year: 2013, + DName: 'Hermann Meyer GmbH & Co. KG', + Model: 'A1', + Price: 9950, + Mileage: 93996, + DealerId: '35d4fe7e-81a0-6e99-a575-6f62bffb8900', + Derivative: 'A1 1.4 TFSI Ambition Limousine', + }, + { + Vrm: '010178', + Make: 'AUDI', + Year: 2016, + DName: 'Hermann Meyer GmbH & Co. KG', + Model: 'A1', + Price: 12950, + Mileage: 69454, + DealerId: '35d4fe7e-81a0-6e99-a575-6f62bffb8900', + Derivative: 'A1 1.4 TFSI Sportback S tronic Attraction Limousine', + }, + ], + page: 0, + merge: { + nbHitsMax: 1000, + nbHitslimit: 1000, + nbSearchers: 2, + nbHitsProcessed: 10, + personalization: { + impact: 100, + enabled: true, + profile: { + time: 0, + facets: {}, + taskID: 0, + }, + percentile: 0, + nbPersoScanned: 0, + nbPersoSkipped: 0, + nbPersoReranked: 0, + nbPersoReturned: 0, + nbPersoSelected: 0, + nbRelevanceBuckets: 8, + }, + lastHitToDisplay: 10, + nbHitsNumberingEnd: 10, + }, + nbHits: 13, + nbPages: 2, + queryID: 'c5a176f8493236fcbfe69c3298d41659', + indexUsed: 'Germany_prod_stock_Finance_0', + serverUsed: 'd85-de-1.algolia.net', + hitsPerPage: 10, + parsedQuery: 'audi a5', + timeoutHits: false, + appliedRules: [ + { + objectID: '1539345377254', + }, + { + objectID: '1548767806494', + }, + ], + facets_stats: { + Doors: { + avg: 3, + max: 5, + min: 2, + sum: 48, + }, + Price: { + avg: 13210, + max: 15980, + min: 9950, + sum: 171730, + }, + VrmYear: { + avg: 2013, + max: 2017, + min: 2009, + sum: 26171, + }, + }, + timeoutCounts: false, + }, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + 'searchResponse.hits.Vrm': + '026067,4527,10007,031983,042012,002743,205536_3895,116265,010159,010178', + 'searchResponse.hits.Make': 'AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI', + 'searchResponse.hits.Year': '2010,2009,2017,2012,2015,2010,2011,2016,2013,2016', + 'searchResponse.hits.DName': + 'PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH,Stephan Walters - Autohaus Walters,ps kfz-vertrieb GmbH,Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt",Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt",Auto Mayer e.K.Inh. Skelcim Imeri,Autohaus Löbau GmbH,Elspass Autoland GmbH & Co. KG,Hermann Meyer GmbH & Co. KG,Hermann Meyer GmbH & Co. KG', + 'searchResponse.hits.Model': 'A5,A5,A5,A5,A5,A5,A5,A1,A1,A1', + 'searchResponse.hits.Price': + '13990,14450,14580,10980,15980,13980,12790,14690,9950,12950', + 'searchResponse.hits.Mileage': + '163000,99990,151500,197335,144205,121015,89236,42800,93996,69454', + 'searchResponse.hits.DealerId': + '1f338e5b-740f-6a38-bee1-ecff97acda69,68c7b5ae-8cf0-6595-9fd2-8644b9682838,a107e9a8-ac3c-6790-bb84-052dd5eed5e8,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,972258cb-132f-62a9-bd31-e02f9f70fa7b,9e697219-293e-63a0-884a-2d03f77bbbef,00c1bf3f-b19d-6198-a509-c7f2ff73c29a,35d4fe7e-81a0-6e99-a575-6f62bffb8900,35d4fe7e-81a0-6e99-a575-6f62bffb8900', + 'searchResponse.hits.Derivative': + 'A5 Cabrio 1.8 TFSI Cabrio,A5 Cabrio 40 TFSI S tronic S line Cabrio,A5 Sportback 2.0 TDI ultra S tronic Coupe,A5 2.0 TDI Sportback DPF multitronic Coupe,A5 Coupe 35 TDI S tronic S line Coupe,A5 Cabrio 2.0 TDI DPF Cabrio,A5 2.0 TDI Sportback DPF Coupe,A1 1.0 TFSI ultra Limousine,A1 1.4 TFSI Ambition Limousine,A1 1.4 TFSI Sportback S tronic Attraction Limousine', + 'searchResponse.page': 0, + 'searchResponse.merge.nbHitsMax': 1000, + 'searchResponse.merge.nbHitslimit': 1000, + 'searchResponse.merge.nbSearchers': 2, + 'searchResponse.merge.nbHitsProcessed': 10, + 'searchResponse.merge.personalization.impact': 100, + 'searchResponse.merge.personalization.enabled': true, + 'searchResponse.merge.personalization.profile.time': 0, + 'searchResponse.merge.personalization.profile.taskID': 0, + 'searchResponse.merge.personalization.percentile': 0, + 'searchResponse.merge.personalization.nbPersoScanned': 0, + 'searchResponse.merge.personalization.nbPersoSkipped': 0, + 'searchResponse.merge.personalization.nbPersoReranked': 0, + 'searchResponse.merge.personalization.nbPersoReturned': 0, + 'searchResponse.merge.personalization.nbPersoSelected': 0, + 'searchResponse.merge.personalization.nbRelevanceBuckets': 8, + 'searchResponse.merge.lastHitToDisplay': 10, + 'searchResponse.merge.nbHitsNumberingEnd': 10, + 'searchResponse.nbHits': 13, + 'searchResponse.nbPages': 2, + 'searchResponse.queryID': 'c5a176f8493236fcbfe69c3298d41659', + 'searchResponse.indexUsed': 'Germany_prod_stock_Finance_0', + 'searchResponse.serverUsed': 'd85-de-1.algolia.net', + 'searchResponse.hitsPerPage': 10, + 'searchResponse.parsedQuery': 'audi a5', + 'searchResponse.timeoutHits': false, + 'searchResponse.appliedRules.objectID': '1539345377254,1548767806494', + 'searchResponse.facets_stats.Doors.avg': 3, + 'searchResponse.facets_stats.Doors.max': 5, + 'searchResponse.facets_stats.Doors.min': 2, + 'searchResponse.facets_stats.Doors.sum': 48, + 'searchResponse.facets_stats.Price.avg': 13210, + 'searchResponse.facets_stats.Price.max': 15980, + 'searchResponse.facets_stats.Price.min': 9950, + 'searchResponse.facets_stats.Price.sum': 171730, + 'searchResponse.facets_stats.VrmYear.avg': 2013, + 'searchResponse.facets_stats.VrmYear.max': 2017, + 'searchResponse.facets_stats.VrmYear.min': 2009, + 'searchResponse.facets_stats.VrmYear.sum': 26171, + 'searchResponse.timeoutCounts': false, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: '1afmecIpsJm7D72aRTksxyODrwR', + Name: 'Segment', + DestinationDefinition: { + ID: '1afjjahf0X5lSyNze7Xh7aqJs11', + Name: 'SEGMENT', + DisplayName: 'Segment', + Config: { + excludeKeys: [], + includeKeys: [], + }, + }, + Config: { + writeKey: 'abcdefghijklmnopqrstuvwxyz', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.1-rc.2', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.1-rc.2', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index4.html', + }, + screen: { + density: 2, + }, + traits: { + age: 23, + email: 'testmp@email.com', + firstname: 'Test Transformer', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', + }, + event: 'JuhuSearchResults', + integrations: { + All: true, + }, + messageId: '584fde02-901a-4964-a4a0-4078b999d5b2', + originalTimestamp: '2020-04-17T14:55:31.372Z', + traits: { + searchResponse: { + hits: [ + { + Vrm: '026067', + Make: 'AUDI', + Year: 2010, + DName: 'PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH', + Model: 'A5', + Price: 13990, + Mileage: 163000, + DealerId: '1f338e5b-740f-6a38-bee1-ecff97acda69', + Derivative: 'A5 Cabrio 1.8 TFSI Cabrio', + }, + { + Vrm: '4527', + Make: 'AUDI', + Year: 2009, + DName: 'Stephan Walters - Autohaus Walters', + Model: 'A5', + Price: 14450, + Mileage: 99990, + DealerId: '68c7b5ae-8cf0-6595-9fd2-8644b9682838', + Derivative: 'A5 Cabrio 40 TFSI S tronic S line Cabrio', + }, + { + Vrm: '10007', + Make: 'AUDI', + Year: 2017, + DName: 'ps kfz-vertrieb GmbH', + Model: 'A5', + Price: 14580, + Mileage: 151500, + DealerId: 'a107e9a8-ac3c-6790-bb84-052dd5eed5e8', + Derivative: 'A5 Sportback 2.0 TDI ultra S tronic Coupe', + }, + { + Vrm: '031983', + Make: 'AUDI', + Year: 2012, + DName: 'Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt"', + Model: 'A5', + Price: 10980, + Mileage: 197335, + DealerId: '8a574713-2fbe-6f0c-b1a8-39ba7ee683fc', + Derivative: 'A5 2.0 TDI Sportback DPF multitronic Coupe', + }, + { + Vrm: '042012', + Make: 'AUDI', + Year: 2015, + DName: 'Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt"', + Model: 'A5', + Price: 15980, + Mileage: 144205, + DealerId: '8a574713-2fbe-6f0c-b1a8-39ba7ee683fc', + Derivative: 'A5 Coupe 35 TDI S tronic S line Coupe', + }, + { + Vrm: '002743', + Make: 'AUDI', + Year: 2010, + DName: 'Auto Mayer e.K.Inh. Skelcim Imeri', + Model: 'A5', + Price: 13980, + Mileage: 121015, + DealerId: '972258cb-132f-62a9-bd31-e02f9f70fa7b', + Derivative: 'A5 Cabrio 2.0 TDI DPF Cabrio', + }, + { + Vrm: '205536_3895', + Make: 'AUDI', + Year: 2011, + DName: 'Autohaus Löbau GmbH', + Model: 'A5', + Price: 12790, + Mileage: 89236, + DealerId: '9e697219-293e-63a0-884a-2d03f77bbbef', + Derivative: 'A5 2.0 TDI Sportback DPF Coupe', + }, + { + Vrm: '116265', + Make: 'AUDI', + Year: 2016, + DName: 'Elspass Autoland GmbH & Co. KG', + Model: 'A1', + Price: 14690, + Mileage: 42800, + DealerId: '00c1bf3f-b19d-6198-a509-c7f2ff73c29a', + Derivative: 'A1 1.0 TFSI ultra Limousine', + }, + { + Vrm: '010159', + Make: 'AUDI', + Year: 2013, + DName: 'Hermann Meyer GmbH & Co. KG', + Model: 'A1', + Price: 9950, + Mileage: 93996, + DealerId: '35d4fe7e-81a0-6e99-a575-6f62bffb8900', + Derivative: 'A1 1.4 TFSI Ambition Limousine', + }, + { + Vrm: '010178', + Make: 'AUDI', + Year: 2016, + DName: 'Hermann Meyer GmbH & Co. KG', + Model: 'A1', + Price: 12950, + Mileage: 69454, + DealerId: '35d4fe7e-81a0-6e99-a575-6f62bffb8900', + Derivative: 'A1 1.4 TFSI Sportback S tronic Attraction Limousine', + }, + ], + page: 0, + merge: { + nbHitsMax: 1000, + nbHitslimit: 1000, + nbSearchers: 2, + nbHitsProcessed: 10, + personalization: { + impact: 100, + enabled: true, + profile: { + time: 0, + facets: {}, + taskID: 0, + }, + percentile: 0, + nbPersoScanned: 0, + nbPersoSkipped: 0, + nbPersoReranked: 0, + nbPersoReturned: 0, + nbPersoSelected: 0, + nbRelevanceBuckets: 8, + }, + lastHitToDisplay: 10, + nbHitsNumberingEnd: 10, + }, + nbHits: 13, + nbPages: 2, + queryID: 'c5a176f8493236fcbfe69c3298d41659', + indexUsed: 'Germany_prod_stock_Finance_0', + serverUsed: 'd85-de-1.algolia.net', + hitsPerPage: 10, + parsedQuery: 'audi a5', + timeoutHits: false, + appliedRules: [ + { + objectID: '1539345377254', + }, + { + objectID: '1548767806494', + }, + ], + facets_stats: { + Doors: { + avg: 3, + max: 5, + min: 2, + sum: 48, + }, + Price: { + avg: 13210, + max: 15980, + min: 9950, + sum: 171730, + }, + VrmYear: { + avg: 2013, + max: 2017, + min: 2009, + sum: 26171, + }, + }, + timeoutCounts: false, + }, + }, + receivedAt: '2020-04-17T20:25:31.401+05:30', + request_ip: '[::1]:57365', + sentAt: '2020-04-17T14:55:31.372Z', + timestamp: '2020-04-17T20:25:31.401+05:30', + name: 'test page', + type: 'identify', + userId: 'user12345', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/identify', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + uniqueId: 'user12345', + properties: { + 'searchResponse.hits.Vrm': + '026067,4527,10007,031983,042012,002743,205536_3895,116265,010159,010178', + 'searchResponse.hits.Make': 'AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI', + 'searchResponse.hits.Year': '2010,2009,2017,2012,2015,2010,2011,2016,2013,2016', + 'searchResponse.hits.DName': + 'PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH,Stephan Walters - Autohaus Walters,ps kfz-vertrieb GmbH,Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt",Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt",Auto Mayer e.K.Inh. Skelcim Imeri,Autohaus Löbau GmbH,Elspass Autoland GmbH & Co. KG,Hermann Meyer GmbH & Co. KG,Hermann Meyer GmbH & Co. KG', + 'searchResponse.hits.Model': 'A5,A5,A5,A5,A5,A5,A5,A1,A1,A1', + 'searchResponse.hits.Price': + '13990,14450,14580,10980,15980,13980,12790,14690,9950,12950', + 'searchResponse.hits.Mileage': + '163000,99990,151500,197335,144205,121015,89236,42800,93996,69454', + 'searchResponse.hits.DealerId': + '1f338e5b-740f-6a38-bee1-ecff97acda69,68c7b5ae-8cf0-6595-9fd2-8644b9682838,a107e9a8-ac3c-6790-bb84-052dd5eed5e8,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,972258cb-132f-62a9-bd31-e02f9f70fa7b,9e697219-293e-63a0-884a-2d03f77bbbef,00c1bf3f-b19d-6198-a509-c7f2ff73c29a,35d4fe7e-81a0-6e99-a575-6f62bffb8900,35d4fe7e-81a0-6e99-a575-6f62bffb8900', + 'searchResponse.hits.Derivative': + 'A5 Cabrio 1.8 TFSI Cabrio,A5 Cabrio 40 TFSI S tronic S line Cabrio,A5 Sportback 2.0 TDI ultra S tronic Coupe,A5 2.0 TDI Sportback DPF multitronic Coupe,A5 Coupe 35 TDI S tronic S line Coupe,A5 Cabrio 2.0 TDI DPF Cabrio,A5 2.0 TDI Sportback DPF Coupe,A1 1.0 TFSI ultra Limousine,A1 1.4 TFSI Ambition Limousine,A1 1.4 TFSI Sportback S tronic Attraction Limousine', + 'searchResponse.page': 0, + 'searchResponse.merge.nbHitsMax': 1000, + 'searchResponse.merge.nbHitslimit': 1000, + 'searchResponse.merge.nbSearchers': 2, + 'searchResponse.merge.nbHitsProcessed': 10, + 'searchResponse.merge.personalization.impact': 100, + 'searchResponse.merge.personalization.enabled': true, + 'searchResponse.merge.personalization.profile.time': 0, + 'searchResponse.merge.personalization.profile.taskID': 0, + 'searchResponse.merge.personalization.percentile': 0, + 'searchResponse.merge.personalization.nbPersoScanned': 0, + 'searchResponse.merge.personalization.nbPersoSkipped': 0, + 'searchResponse.merge.personalization.nbPersoReranked': 0, + 'searchResponse.merge.personalization.nbPersoReturned': 0, + 'searchResponse.merge.personalization.nbPersoSelected': 0, + 'searchResponse.merge.personalization.nbRelevanceBuckets': 8, + 'searchResponse.merge.lastHitToDisplay': 10, + 'searchResponse.merge.nbHitsNumberingEnd': 10, + 'searchResponse.nbHits': 13, + 'searchResponse.nbPages': 2, + 'searchResponse.queryID': 'c5a176f8493236fcbfe69c3298d41659', + 'searchResponse.indexUsed': 'Germany_prod_stock_Finance_0', + 'searchResponse.serverUsed': 'd85-de-1.algolia.net', + 'searchResponse.hitsPerPage': 10, + 'searchResponse.parsedQuery': 'audi a5', + 'searchResponse.timeoutHits': false, + 'searchResponse.appliedRules.objectID': '1539345377254,1548767806494', + 'searchResponse.facets_stats.Doors.avg': 3, + 'searchResponse.facets_stats.Doors.max': 5, + 'searchResponse.facets_stats.Doors.min': 2, + 'searchResponse.facets_stats.Doors.sum': 48, + 'searchResponse.facets_stats.Price.avg': 13210, + 'searchResponse.facets_stats.Price.max': 15980, + 'searchResponse.facets_stats.Price.min': 9950, + 'searchResponse.facets_stats.Price.sum': 171730, + 'searchResponse.facets_stats.VrmYear.avg': 2013, + 'searchResponse.facets_stats.VrmYear.max': 2017, + 'searchResponse.facets_stats.VrmYear.min': 2009, + 'searchResponse.facets_stats.VrmYear.sum': 26171, + 'searchResponse.timeoutCounts': false, + browser: 'Chrome', + browser_version: '80.0.3987.163', + device: 'Macintosh', + os: 'Mac OS', + }, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'user12345', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/alias', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + previousId: 'ac7722c2-ccb6-4ae2-baf6-1effe861f4cd', + newId: 'user12345', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'user12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + }, + }, + request_ip: '1.1.1.1', + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: '12345', + eventName: 'Page View ApplicationLoaded', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + eventTime: 1571051718299, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + }, + }, + request_ip: '1.1.1.1', + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: '12345', + eventName: 'Page View ApplicationLoaded', + properties: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + eventTime: 1571051718299, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '12345', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 16', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 17', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + searchResponse: { + hits: [ + { + Vrm: '026067', + Make: 'AUDI', + Year: 2010, + DName: 'PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH', + Model: 'A5', + Price: 13990, + Mileage: 163000, + DealerId: '1f338e5b-740f-6a38-bee1-ecff97acda69', + Derivative: 'A5 Cabrio 1.8 TFSI Cabrio', + }, + { + Vrm: '4527', + Make: 'AUDI', + Year: 2009, + DName: 'Stephan Walters - Autohaus Walters', + Model: 'A5', + Price: 14450, + Mileage: 99990, + DealerId: '68c7b5ae-8cf0-6595-9fd2-8644b9682838', + Derivative: 'A5 Cabrio 40 TFSI S tronic S line Cabrio', + }, + { + Vrm: '10007', + Make: 'AUDI', + Year: 2017, + DName: 'ps kfz-vertrieb GmbH', + Model: 'A5', + Price: 14580, + Mileage: 151500, + DealerId: 'a107e9a8-ac3c-6790-bb84-052dd5eed5e8', + Derivative: 'A5 Sportback 2.0 TDI ultra S tronic Coupe', + }, + { + Vrm: '031983', + Make: 'AUDI', + Year: 2012, + DName: 'Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt"', + Model: 'A5', + Price: 10980, + Mileage: 197335, + DealerId: '8a574713-2fbe-6f0c-b1a8-39ba7ee683fc', + Derivative: 'A5 2.0 TDI Sportback DPF multitronic Coupe', + }, + { + Vrm: '042012', + Make: 'AUDI', + Year: 2015, + DName: 'Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt"', + Model: 'A5', + Price: 15980, + Mileage: 144205, + DealerId: '8a574713-2fbe-6f0c-b1a8-39ba7ee683fc', + Derivative: 'A5 Coupe 35 TDI S tronic S line Coupe', + }, + { + Vrm: '002743', + Make: 'AUDI', + Year: 2010, + DName: 'Auto Mayer e.K.Inh. Skelcim Imeri', + Model: 'A5', + Price: 13980, + Mileage: 121015, + DealerId: '972258cb-132f-62a9-bd31-e02f9f70fa7b', + Derivative: 'A5 Cabrio 2.0 TDI DPF Cabrio', + }, + { + Vrm: '205536_3895', + Make: 'AUDI', + Year: 2011, + DName: 'Autohaus Löbau GmbH', + Model: 'A5', + Price: 12790, + Mileage: 89236, + DealerId: '9e697219-293e-63a0-884a-2d03f77bbbef', + Derivative: 'A5 2.0 TDI Sportback DPF Coupe', + }, + { + Vrm: '116265', + Make: 'AUDI', + Year: 2016, + DName: 'Elspass Autoland GmbH & Co. KG', + Model: 'A1', + Price: 14690, + Mileage: 42800, + DealerId: '00c1bf3f-b19d-6198-a509-c7f2ff73c29a', + Derivative: 'A1 1.0 TFSI ultra Limousine', + }, + { + Vrm: '010159', + Make: 'AUDI', + Year: 2013, + DName: 'Hermann Meyer GmbH & Co. KG', + Model: 'A1', + Price: 9950, + Mileage: 93996, + DealerId: '35d4fe7e-81a0-6e99-a575-6f62bffb8900', + Derivative: 'A1 1.4 TFSI Ambition Limousine', + }, + { + Vrm: '010178', + Make: 'AUDI', + Year: 2016, + DName: 'Hermann Meyer GmbH & Co. KG', + Model: 'A1', + Price: 12950, + Mileage: 69454, + DealerId: '35d4fe7e-81a0-6e99-a575-6f62bffb8900', + Derivative: 'A1 1.4 TFSI Sportback S tronic Attraction Limousine', + }, + ], + page: 0, + merge: { + nbHitsMax: 1000, + nbHitslimit: 1000, + nbSearchers: 2, + nbHitsProcessed: 10, + personalization: { + impact: 100, + enabled: true, + profile: { + time: 0, + facets: {}, + taskID: 0, + }, + percentile: 0, + nbPersoScanned: 0, + nbPersoSkipped: 0, + nbPersoReranked: 0, + nbPersoReturned: 0, + nbPersoSelected: 0, + nbRelevanceBuckets: 8, + }, + lastHitToDisplay: 10, + nbHitsNumberingEnd: 10, + }, + nbHits: 13, + nbPages: 2, + queryID: 'c5a176f8493236fcbfe69c3298d41659', + indexUsed: 'Germany_prod_stock_Finance_0', + serverUsed: 'd85-de-1.algolia.net', + hitsPerPage: 10, + parsedQuery: 'audi a5', + timeoutHits: false, + appliedRules: [ + { + objectID: '1539345377254', + }, + { + objectID: '1548767806494', + }, + ], + facets_stats: { + Doors: { + avg: 3, + max: 5, + min: 2, + sum: 48, + }, + Price: { + avg: 13210, + max: 15980, + min: 9950, + sum: 171730, + }, + VrmYear: { + avg: 2013, + max: 2017, + min: 2009, + sum: 26171, + }, + }, + timeoutCounts: false, + }, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + 'searchResponse.hits.Vrm': + '026067,4527,10007,031983,042012,002743,205536_3895,116265,010159,010178', + 'searchResponse.hits.Make': 'AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI,AUDI', + 'searchResponse.hits.Year': '2010,2009,2017,2012,2015,2010,2011,2016,2013,2016', + 'searchResponse.hits.DName': + 'PISCA PROFESSIONAL INDUSTRIAL SOLUTION Consulting & Acquisition GmbH,Stephan Walters - Autohaus Walters,ps kfz-vertrieb GmbH,Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt",Hüseyin Zan Fahrzeughandel "Autopark Grendelmatt",Auto Mayer e.K.Inh. Skelcim Imeri,Autohaus Löbau GmbH,Elspass Autoland GmbH & Co. KG,Hermann Meyer GmbH & Co. KG,Hermann Meyer GmbH & Co. KG', + 'searchResponse.hits.Model': 'A5,A5,A5,A5,A5,A5,A5,A1,A1,A1', + 'searchResponse.hits.Price': + '13990,14450,14580,10980,15980,13980,12790,14690,9950,12950', + 'searchResponse.hits.Mileage': + '163000,99990,151500,197335,144205,121015,89236,42800,93996,69454', + 'searchResponse.hits.DealerId': + '1f338e5b-740f-6a38-bee1-ecff97acda69,68c7b5ae-8cf0-6595-9fd2-8644b9682838,a107e9a8-ac3c-6790-bb84-052dd5eed5e8,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,8a574713-2fbe-6f0c-b1a8-39ba7ee683fc,972258cb-132f-62a9-bd31-e02f9f70fa7b,9e697219-293e-63a0-884a-2d03f77bbbef,00c1bf3f-b19d-6198-a509-c7f2ff73c29a,35d4fe7e-81a0-6e99-a575-6f62bffb8900,35d4fe7e-81a0-6e99-a575-6f62bffb8900', + 'searchResponse.hits.Derivative': + 'A5 Cabrio 1.8 TFSI Cabrio,A5 Cabrio 40 TFSI S tronic S line Cabrio,A5 Sportback 2.0 TDI ultra S tronic Coupe,A5 2.0 TDI Sportback DPF multitronic Coupe,A5 Coupe 35 TDI S tronic S line Coupe,A5 Cabrio 2.0 TDI DPF Cabrio,A5 2.0 TDI Sportback DPF Coupe,A1 1.0 TFSI ultra Limousine,A1 1.4 TFSI Ambition Limousine,A1 1.4 TFSI Sportback S tronic Attraction Limousine', + 'searchResponse.page': 0, + 'searchResponse.merge.nbHitsMax': 1000, + 'searchResponse.merge.nbHitslimit': 1000, + 'searchResponse.merge.nbSearchers': 2, + 'searchResponse.merge.nbHitsProcessed': 10, + 'searchResponse.merge.personalization.impact': 100, + 'searchResponse.merge.personalization.enabled': true, + 'searchResponse.merge.personalization.profile.time': 0, + 'searchResponse.merge.personalization.profile.taskID': 0, + 'searchResponse.merge.personalization.percentile': 0, + 'searchResponse.merge.personalization.nbPersoScanned': 0, + 'searchResponse.merge.personalization.nbPersoSkipped': 0, + 'searchResponse.merge.personalization.nbPersoReranked': 0, + 'searchResponse.merge.personalization.nbPersoReturned': 0, + 'searchResponse.merge.personalization.nbPersoSelected': 0, + 'searchResponse.merge.personalization.nbRelevanceBuckets': 8, + 'searchResponse.merge.lastHitToDisplay': 10, + 'searchResponse.merge.nbHitsNumberingEnd': 10, + 'searchResponse.nbHits': 13, + 'searchResponse.nbPages': 2, + 'searchResponse.queryID': 'c5a176f8493236fcbfe69c3298d41659', + 'searchResponse.indexUsed': 'Germany_prod_stock_Finance_0', + 'searchResponse.serverUsed': 'd85-de-1.algolia.net', + 'searchResponse.hitsPerPage': 10, + 'searchResponse.parsedQuery': 'audi a5', + 'searchResponse.timeoutHits': false, + 'searchResponse.appliedRules.objectID': '1539345377254,1548767806494', + 'searchResponse.facets_stats.Doors.avg': 3, + 'searchResponse.facets_stats.Doors.max': 5, + 'searchResponse.facets_stats.Doors.min': 2, + 'searchResponse.facets_stats.Doors.sum': 48, + 'searchResponse.facets_stats.Price.avg': 13210, + 'searchResponse.facets_stats.Price.max': 15980, + 'searchResponse.facets_stats.Price.min': 9950, + 'searchResponse.facets_stats.Price.sum': 171730, + 'searchResponse.facets_stats.VrmYear.avg': 2013, + 'searchResponse.facets_stats.VrmYear.max': 2017, + 'searchResponse.facets_stats.VrmYear.min': 2009, + 'searchResponse.facets_stats.VrmYear.sum': 26171, + 'searchResponse.timeoutCounts': false, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 18', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + page: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + searchResponse: { + primitiveArr1: ['abc', 'def'], + primitiveArr2: [1, 2, 3], + arrOfArr: [ + ['abc', 'def'], + [1, 2, 3], + ], + emptyArr: [], + complexArr1: [ + { + crr1K1: { + discardK1: 'discardV1', + }, + }, + ], + }, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + path: '/tests/html/index4.html', + referrer: '', + search: 'abc', + title: 'Test Page', + url: 'http://localhost/tests/html/index4.html', + 'searchResponse.primitiveArr1': 'abc,def', + 'searchResponse.primitiveArr2': '1,2,3', + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 19', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + campaign: {}, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'indicative', + description: 'Test 20', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + message: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSPonIAEmulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'kolkata', + country: 'India', + }, + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'Product Clicked', + integrations: { + All: true, + }, + messageId: '1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06', + properties: { + revenue: '30', + currency: 'USD', + quantity: '5', + test_key_2: { + test_child_key_1: 'test_child_value_1', + }, + price: '58.0', + }, + originalTimestamp: '2020-05-25T18:37:10.917Z', + type: 'track', + userId: 'sample_user_id', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'sample_user_id', + eventName: 'Product Clicked', + properties: { + revenue: '30', + currency: 'USD', + quantity: '5', + 'test_key_2.test_child_key_1': 'test_child_value_1', + price: '58.0', + device: 'Android 9', + os: 'Android', + }, + eventTime: 1590431830917, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'sample_user_id', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/indicative/router/data.ts b/test/integrations/destinations/indicative/router/data.ts new file mode 100644 index 0000000000..037d5d5c3d --- /dev/null +++ b/test/integrations/destinations/indicative/router/data.ts @@ -0,0 +1,314 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + metadata: { + jobId: 2, + }, + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + AM: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + userId: 'test_user_id', + timestamp: '2019-09-01T15:46:51.693Z', + type: 'track', + }, + }, + { + destination: { + Config: { + apiKey: 'abcde', + }, + }, + metadata: { + jobId: 2, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: 'anon_id', + userId: '123456', + type: 'identify', + traits: { + anonymousId: 'anon_id', + email: 'sayan@gmail.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + }, + ], + destType: 'indicative', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/event', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + eventUniqueId: 'test_user_id', + eventName: 'spin_result', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + versionSessionCount: 2, + win_amount: 0, + }, + eventTime: 1567352811693, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'test_user_id', + }, + ], + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: 'abcde', + }, + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/identify', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + uniqueId: '123456', + properties: { + email: 'sayan@gmail.com', + 'address.city': 'kolkata', + 'address.country': 'India', + 'address.postalCode': 712136, + 'address.state': 'WB', + 'address.street': '', + browser: 'Chrome', + browser_version: '77.0.3865.90', + device: 'Macintosh', + os: 'Mac OS', + }, + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.indicative.com/service/alias', + headers: { + 'Indicative-Client': 'RudderStack', + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + previousId: 'anon_id', + newId: '123456', + apiKey: 'abcde', + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '123456', + }, + ], + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: 'abcde', + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/iterable/processor/data.ts b/test/integrations/destinations/iterable/processor/data.ts new file mode 100644 index 0000000000..19b370b513 --- /dev/null +++ b/test/integrations/destinations/iterable/processor/data.ts @@ -0,0 +1,3784 @@ +export const data = [ + { + name: 'iterable', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'page', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Invalid page call', + statTags: { + destType: 'ITERABLE', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'identify', + sentAt: '2020-08-28T16:26:06.466Z', + traits: { + city: 'Bangalore', + name: 'manashi', + email: 'manashi@website.com', + country: 'India', + }, + context: { + traits: { + city: 'Bangalore', + name: 'manashi', + email: 'manashi@website.com', + country: 'India', + preferUserId: false, + }, + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd', + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.462Z', + }, + destination: { + Config: { + preferUserId: false, + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + email: 'manashi@website.com', + userId: 'abcdeeeeeeeexxxx102', + dataFields: { + city: 'Bangalore', + name: 'manashi', + email: 'manashi@website.com', + country: 'India', + }, + preferUserId: false, + mergeNestedObjects: true, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.iterable.com/api/users/update', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'track', + event: 'Email Opened', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453', + properties: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + userId: 'abcdeeeeeeeexxxx102', + createdAt: 1598631966468, + eventName: 'Email Opened', + dataFields: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.iterable.com/api/events/track', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + }, + userId: '12345', + eventName: 'ApplicationLoaded page', + createdAt: 1571051718299, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + campaignId: '123456', + templateId: '1213458', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: true, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + campaignId: '123456', + templateId: '1213458', + }, + userId: '12345', + eventName: 'Loaded a Page', + createdAt: 1571051718299, + campaignId: 123456, + templateId: 1213458, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + name: 'test-name', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: false, + trackNamedPages: true, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + name: 'test-name', + }, + userId: '12345', + eventName: 'ApplicationLoaded page', + createdAt: 1571051718299, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + }, + userId: '12345', + eventName: 'ApplicationLoaded page', + createdAt: 1571051718299, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'screen', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + }, + userId: '12345', + eventName: 'ApplicationLoaded screen', + createdAt: 1571051718299, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'screen', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + campaignId: '123456', + templateId: '1213458', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: true, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + campaignId: '123456', + templateId: '1213458', + }, + userId: '12345', + eventName: 'Loaded a Screen', + createdAt: 1571051718299, + campaignId: 123456, + templateId: 1213458, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'screen', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + name: 'test-name', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: false, + trackNamedPages: true, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + name: 'test-name', + }, + userId: '12345', + eventName: 'ApplicationLoaded screen', + createdAt: 1571051718299, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'screen', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + }, + userId: '12345', + eventName: 'ApplicationLoaded screen', + createdAt: 1571051718299, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'group', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Message type group not supported', + statTags: { + destType: 'ITERABLE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + mergeNestedObjects: false, + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'ruchira@rudderlabs.com', + dataFields: { + email: 'ruchira@rudderlabs.com', + }, + userId: '123456', + preferUserId: true, + mergeNestedObjects: false, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + token: 'sample_push_token', + name: 'sample_device_name', + model: 'sample_device_model', + manufacturer: 'sample_device_manufacturer', + type: 'ios', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'ruchira@rudderlabs.com', + dataFields: { + email: 'ruchira@rudderlabs.com', + }, + userId: '123456', + preferUserId: true, + mergeNestedObjects: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 14', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + token: 'sample_push_token', + name: 'sample_device_name', + model: 'sample_device_model', + manufacturer: 'sample_device_manufacturer', + type: 'android', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'ruchira@rudderlabs.com', + dataFields: { + email: 'ruchira@rudderlabs.com', + }, + userId: '123456', + preferUserId: true, + mergeNestedObjects: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 15', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'product added', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + campaignId: '1', + templateId: '0', + orderId: 10000, + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'cars', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + quantity: '2', + }, + { + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: 22, + position: '12', + category: 'Cars2', + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + ], + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/updateCart', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + user: { + email: 'sayan@gmail.com', + dataFields: { + email: 'sayan@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + categories: ['cars'], + price: 19, + quantity: 2, + imageUrl: 'https://www.example.com/product/path.jpg', + url: 'https://www.example.com/product/path', + }, + { + id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + categories: ['Cars2'], + price: 192, + quantity: 22, + imageUrl: 'https://www.example.com/product/path.jpg2', + url: 'https://www.example.com/product/path2', + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 16', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'order completed', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + orderId: 10000, + total: '1000', + campaignId: '123456', + templateId: '1213458', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'Cars', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + quantity: 2, + }, + { + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: '22', + position: '12', + category: 'Cars2', + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + ], + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/trackPurchase', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + dataFields: { + orderId: 10000, + total: '1000', + campaignId: '123456', + templateId: '1213458', + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'Cars', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + quantity: 2, + }, + { + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: '22', + position: '12', + category: 'Cars2', + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + ], + }, + id: '10000', + createdAt: 1571051718299, + campaignId: 123456, + templateId: 1213458, + total: 1000, + user: { + email: 'sayan@gmail.com', + dataFields: { + email: 'sayan@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + categories: ['Cars'], + price: 19, + quantity: 2, + imageUrl: 'https://www.example.com/product/path.jpg', + url: 'https://www.example.com/product/path', + }, + { + id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + categories: ['Cars2'], + price: 192, + quantity: 22, + imageUrl: 'https://www.example.com/product/path.jpg2', + url: 'https://www.example.com/product/path2', + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 17', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'test track event GA3', + properties: { + email: 'ruchira@rudderlabs.com', + campaignId: '1', + templateId: '0', + category: 'test-category', + user_actual_role: 'system_admin, system_user', + user_actual_id: 12345, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/track', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'ruchira@rudderlabs.com', + dataFields: { + campaignId: '1', + templateId: '0', + category: 'test-category', + user_actual_role: 'system_admin, system_user', + user_actual_id: 12345, + email: 'ruchira@rudderlabs.com', + }, + userId: '12345', + eventName: 'test track event GA3', + createdAt: 1571051718300, + campaignId: 1, + templateId: 0, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 18', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'ruchira@rudderlabs.com', + dataFields: { + email: 'ruchira@rudderlabs.com', + }, + userId: '123456', + preferUserId: true, + mergeNestedObjects: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 19', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + id: '72e528f869711c3d', + manufacturer: 'Google', + model: 'sdk_gphone_x86', + name: 'generic_x86_arm', + token: 'some_device_token', + type: 'android', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'userId or email is mandatory for this request', + statTags: { + destType: 'ITERABLE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 20', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'page', + sentAt: '2020-08-28T16:26:16.473Z', + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Invalid page call', + statTags: { + destType: 'ITERABLE', + errorCategory: 'dataValidation', + errorType: 'configuration', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 21', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'track', + event: 'Product Added', + sentAt: '2021-07-09T05:27:17.908Z', + userId: '8751', + channel: 'web', + context: { + os: { + name: '', + version: '', + }, + app: { + name: 'RudderLabs JavaScript SDK', + build: '1.0.0', + version: '1.0.16', + namespace: 'com.rudderlabs.javascript', + }, + page: { + url: 'https://joybird.com/cabinets/vira-console-cabinet/', + path: '/cabinets/vira-console-cabinet/', + title: 'Vira Console Cabinet | Joybird', + search: '', + referrer: '$direct', + referring_domain: '', + }, + locale: 'en-us', + screen: { + density: 2, + }, + traits: { + email: 'jessica@jlpdesign.net', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.16', + }, + campaign: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15', + }, + rudderId: '1c42e104-97ec-4f54-a328-2379623583fe', + messageId: 'e58f6624-a1c3-48f4-a6af-610389602304', + timestamp: '2021-07-09T05:27:18.131Z', + properties: { + sku: 'JB24691400-W05', + name: 'Vira Console Cabinet', + price: 797, + cart_id: 'bd9b8dbf4ef8ee01d4206b04fe2ee6ae', + variant: 'Oak', + quantity: 1, + quickship: true, + full_price: 1328, + product_id: 10606, + non_interaction: 1, + }, + receivedAt: '2021-07-09T05:27:18.131Z', + request_ip: '162.224.233.114', + anonymousId: '8a7ff986-62d8-45ca-9a16-8895b3f9d341', + integrations: { + All: true, + }, + originalTimestamp: '2021-07-09T05:27:17.908Z', + }, + destination: { + Config: { + credentials: 'abc', + eventToTopicMap: [ + { + from: 'track', + to: 'projects/big-query-integration-poc/topics/test', + }, + ], + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/updateCart', + headers: { + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + user: { + email: 'jessica@jlpdesign.net', + dataFields: { + email: 'jessica@jlpdesign.net', + }, + userId: '8751', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: 10606, + sku: 'JB24691400-W05', + name: 'Vira Console Cabinet', + price: 797, + quantity: 1, + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 22', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'sources', + context: { + externalId: [ + { + id: 'lynnanderson@smith.net', + identifierType: 'email', + type: 'ITERABLE-users', + }, + ], + mappedToDestination: 'true', + sources: { + batch_id: 'f5f240d0-0acb-46e0-b043-57fb0aabbadd', + job_id: '1zAj94bEy8komdqnYtSoDp0VmGs/Syncher', + job_run_id: 'c5tar6cqgmgmcjvupdhg', + task_id: 'tt_10_rows_check', + task_run_id: 'c5tar6cqgmgmcjvupdi0', + version: 'release.v1.6.8', + }, + }, + messageId: '2f052f7c-f694-4849-a7ed-a432f7ffa0a4', + originalTimestamp: '2021-10-28T14:03:50.503Z', + receivedAt: '2021-10-28T14:03:46.567Z', + recordId: '8', + request_ip: '10.1.94.92', + rudderId: 'c0f6843e-e3d6-4946-9752-fa339fbadef2', + sentAt: '2021-10-28T14:03:50.503Z', + timestamp: '2021-10-28T14:03:46.566Z', + traits: { + administrative_unit: 'Minnesota', + am_pm: 'AM', + boolean: true, + firstname: 'Jacqueline', + pPower: 'AM', + userId: 'Jacqueline', + }, + type: 'identify', + userId: 'lynnanderson@smith.net', + }, + destination: { + ID: '1zia9wKshXt80YksLmUdJnr7IHI', + Name: 'test_iterable', + DestinationDefinition: { + ID: '1iVQvTRMsPPyJzwol0ifH93QTQ6', + Name: 'ITERABLE', + DisplayName: 'Iterable', + Config: { + destConfig: { + defaultConfig: [ + 'apiKey', + 'mapToSingleEvent', + 'trackAllPages', + 'trackCategorisedPages', + 'trackNamedPages', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + apiKey: '12345', + mapToSingleEvent: true, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: true, + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'lynnanderson@smith.net', + dataFields: { + administrative_unit: 'Minnesota', + am_pm: 'AM', + boolean: true, + firstname: 'Jacqueline', + pPower: 'AM', + userId: 'Jacqueline', + email: 'lynnanderson@smith.net', + }, + userId: 'lynnanderson@smith.net', + preferUserId: true, + mergeNestedObjects: true, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 23', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'sources', + context: { + externalId: [ + { + id: 'Matthew', + identifierType: 'userId', + type: 'ITERABLE-users', + }, + ], + mappedToDestination: 'true', + sources: { + batch_id: '230d7c79-a2c2-4b2a-90bb-06ba988d3bb4', + job_id: '1zjj9aF5UkmavBi4HtM3kWOGvy0/Syncher', + job_run_id: 'c5tb4gsqgmgmcjvuplhg', + task_id: 'tt_10_rows', + task_run_id: 'c5tb4gsqgmgmcjvupli0', + version: 'release.v1.6.8', + }, + }, + messageId: 'c4c97310-463b-4300-9215-5cfddcb2a769', + originalTimestamp: '2021-10-28T14:23:43.254Z', + receivedAt: '2021-10-28T14:23:38.300Z', + recordId: '3', + request_ip: '10.1.94.92', + rudderId: '7300f5e3-bdb5-489e-ac7e-47876e487de9', + sentAt: '2021-10-28T14:23:43.254Z', + timestamp: '2021-10-28T14:23:38.299Z', + traits: { + price: 'GB', + }, + type: 'identify', + userId: 'Matthew', + }, + destination: { + ID: '1zjjHN4RQ6t4DPj3HVpp0b6XW4A', + Name: 'test_userId_uniq', + DestinationDefinition: { + ID: '1iVQvTRMsPPyJzwol0ifH93QTQ6', + Name: 'ITERABLE', + DisplayName: 'Iterable', + Config: { + destConfig: { + defaultConfig: [ + 'apiKey', + 'mapToSingleEvent', + 'trackAllPages', + 'trackCategorisedPages', + 'trackNamedPages', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + apiKey: '12345', + mapToSingleEvent: true, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: true, + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + dataFields: { + price: 'GB', + userId: 'Matthew', + }, + userId: 'Matthew', + preferUserId: true, + mergeNestedObjects: true, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 24', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + device: { + token: 'sample_push_token', + name: 'sample_device_name', + model: 'sample_device_model', + manufacturer: 'sample_device_manufacturer', + type: 'watchos', + }, + traits: { + email: 'ruchira@rudderlabs.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + userId: '123456', + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/update', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + email: 'ruchira@rudderlabs.com', + dataFields: { + email: 'ruchira@rudderlabs.com', + }, + userId: '123456', + preferUserId: true, + mergeNestedObjects: true, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 25', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'alias', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + userId: 'new@email.com', + previousId: 'old@email.com', + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + currentEmail: 'old@email.com', + newEmail: 'new@email.com', + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.iterable.com/api/users/updateEmail', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 26', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'alias', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + userId: 'new@email.com', + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from "previousId"', + statTags: { + destType: 'ITERABLE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 27', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'alias', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + previousId: 'old@email.com', + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from "userId"', + statTags: { + destType: 'ITERABLE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 28', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'john@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'product added', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + campaignId: '1', + templateId: '0', + orderId: 10000, + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: ['bikes', 'cars', 'motors'], + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + quantity: '2', + }, + { + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: 22, + position: '12', + category: ['Bikes2', 'cars2', 'motors2'], + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + ], + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/updateCart', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + user: { + email: 'john@gmail.com', + dataFields: { + email: 'john@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + categories: ['bikes', 'cars', 'motors'], + price: 19, + quantity: 2, + imageUrl: 'https://www.example.com/product/path.jpg', + url: 'https://www.example.com/product/path', + }, + { + id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + categories: ['Bikes2', 'cars2', 'motors2'], + price: 192, + quantity: 22, + imageUrl: 'https://www.example.com/product/path.jpg2', + url: 'https://www.example.com/product/path2', + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 29', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'product added', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + campaignId: '1', + templateId: '0', + orderId: 10000, + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'shirts,pants,trousers', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + quantity: '2', + }, + { + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: 22, + position: '12', + category: 'Cars2', + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + ], + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/updateCart', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + user: { + email: 'sayan@gmail.com', + dataFields: { + email: 'sayan@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + categories: ['shirts', 'pants', 'trousers'], + price: 19, + quantity: 2, + imageUrl: 'https://www.example.com/product/path.jpg', + url: 'https://www.example.com/product/path', + }, + { + id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + categories: ['Cars2'], + price: 192, + quantity: 22, + imageUrl: 'https://www.example.com/product/path.jpg2', + url: 'https://www.example.com/product/path2', + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 30', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'product added', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + campaignId: '1', + templateId: '0', + orderId: 10000, + total: 1000, + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: 22, + position: '12', + category: 'Cars2', + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/updateCart', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + user: { + email: 'sayan@gmail.com', + dataFields: { + email: 'sayan@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + categories: ['Cars2'], + price: 192, + quantity: 22, + imageUrl: 'https://www.example.com/product/path.jpg2', + url: 'https://www.example.com/product/path2', + }, + ], + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 31', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + passcode: + 'fbee74a147828e2932c701d19dc1f2dcfa4ac0048be3aa3a88d427090a59dc1c0fa002f1', + accountId: '476550467', + trackAnonymous: true, + enableObjectIdMapping: false, + }, + }, + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'order completed', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + product_id: 1234, + name: 'Shoes', + price: 45, + quantity: 1, + orderId: 10000, + total: '1000', + campaignId: '123456', + templateId: '1213458', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/trackPurchase', + headers: { + 'Content-Type': 'application/json', + }, + params: {}, + body: { + JSON: { + dataFields: { + product_id: 1234, + name: 'Shoes', + price: 45, + quantity: 1, + orderId: 10000, + total: '1000', + campaignId: '123456', + templateId: '1213458', + }, + id: '10000', + createdAt: 1571051718299, + campaignId: 123456, + templateId: 1213458, + total: 1000, + user: { + email: 'sayan@gmail.com', + dataFields: { + email: 'sayan@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: 1234, + name: 'Shoes', + price: 45, + quantity: 1, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 32', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'track', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453', + properties: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + userId: 'abcdeeeeeeeexxxx102', + createdAt: 1598631966468, + dataFields: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.iterable.com/api/events/track', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'iterable', + description: 'Test 33', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + type: 'track', + event: '', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453', + properties: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + JSON: { + userId: 'abcdeeeeeeeexxxx102', + createdAt: 1598631966468, + dataFields: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + }, + }, + type: 'REST', + files: {}, + method: 'POST', + params: {}, + headers: { + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + 'Content-Type': 'application/json', + }, + version: '1', + endpoint: 'https://api.iterable.com/api/events/track', + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/iterable/router/data.ts b/test/integrations/destinations/iterable/router/data.ts new file mode 100644 index 0000000000..7cd19381d6 --- /dev/null +++ b/test/integrations/destinations/iterable/router/data.ts @@ -0,0 +1,1014 @@ +export const data = [ + { + name: 'iterable', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + receivedAt: '2022-09-27T11:12:59.080Z', + sentAt: '2022-09-27T11:13:03.777Z', + messageId: '9ad41366-8060-4c9f-b181-f6bea67d5469', + originalTimestamp: '2022-09-27T11:13:03.777Z', + traits: { + ruchira: 'donaldbaker@ellis.com', + new_field2: 'GB', + }, + channel: 'sources', + rudderId: '3d51640c-ab09-42c1-b7b2-db6ab433b35e', + context: { + sources: { + version: 'feat.SupportForTrack', + job_run_id: 'ccpdlajh6cfi19mr1vs0', + task_run_id: 'ccpdlajh6cfi19mr1vsg', + batch_id: '4917ad78-280b-40d2-a30d-119434152a0f', + job_id: '2FLKJDcTdjPHQpq7pUjB34dQ5w6/Syncher', + task_id: 'rows_100', + }, + mappedToDestination: 'true', + externalId: [ + { + id: 'Tiffany', + type: 'ITERABLE-test-ruchira', + identifierType: 'itemId', + }, + ], + }, + timestamp: '2022-09-27T11:12:59.079Z', + type: 'identify', + userId: 'Tiffany', + recordId: '10', + request_ip: '10.1.86.248', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + apiKey: '583af2f8-15ba-49c0-8511-76383e7de07e', + hubID: '22066036', + }, + Enabled: true, + }, + }, + { + message: { + receivedAt: '2022-09-27T11:12:59.080Z', + sentAt: '2022-09-27T11:13:03.777Z', + messageId: '9ad41366-8060-4c9f-b181-f6bea67d5469', + originalTimestamp: '2022-09-27T11:13:03.777Z', + traits: { + ruchira: 'abc@ellis.com', + new_field2: 'GB1', + }, + channel: 'sources', + rudderId: '3d51640c-ab09-42c1-b7b2-db6ab433b35e', + context: { + sources: { + version: 'feat.SupportForTrack', + job_run_id: 'ccpdlajh6cfi19mr1vs0', + task_run_id: 'ccpdlajh6cfi19mr1vsg', + batch_id: '4917ad78-280b-40d2-a30d-119434152a0f', + job_id: '2FLKJDcTdjPHQpq7pUjB34dQ5w6/Syncher', + task_id: 'rows_100', + }, + mappedToDestination: 'true', + externalId: [ + { + id: 'ABC', + type: 'ITERABLE-test-ruchira', + identifierType: 'itemId', + }, + ], + }, + timestamp: '2022-09-27T11:12:59.079Z', + type: 'identify', + userId: 'Tiffany', + recordId: '10', + request_ip: '10.1.86.248', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + apiKey: '583af2f8-15ba-49c0-8511-76383e7de07e', + hubID: '22066036', + }, + Enabled: true, + }, + }, + ], + destType: 'iterable', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/catalogs/test-ruchira/items', + headers: { + 'Content-Type': 'application/json', + api_key: '583af2f8-15ba-49c0-8511-76383e7de07e', + }, + params: {}, + body: { + JSON: { + documents: { + Tiffany: { + ruchira: 'donaldbaker@ellis.com', + new_field2: 'GB', + }, + ABC: { + ruchira: 'abc@ellis.com', + new_field2: 'GB1', + }, + }, + replaceUploadedFieldsOnly: true, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 2, + }, + { + jobId: 2, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: '583af2f8-15ba-49c0-8511-76383e7de07e', + hubID: '22066036', + }, + Enabled: true, + }, + }, + ], + }, + }, + }, + }, + { + name: 'iterable', + description: 'routerTest 1', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + type: 'track', + event: 'Email Opened', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-570110489d3e99b234b18af9a9eca9d4-6009779e-82d7-469d-aaeb-5ccf162b0453', + properties: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + message: { + type: 'identify', + event: 'Details', + sentAt: '2020-08-28T16:26:06.466Z', + traits: { + city: 'Bangalore', + name: 'manashi', + email: 'manashi@website.com', + country: 'India', + }, + context: { + traits: { + city: 'Bangalore', + name: 'manashi', + email: 'manashi@website.com', + country: 'India', + }, + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-cc3ef811f686139ee527b806ee0129ef-163a3a88-266f-447e-8cce-34a8f42f8dcd', + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.462Z', + }, + metadata: { + jobId: 3, + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + jobId: 4, + }, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + message: { + channel: 'sources', + context: { + externalId: [ + { + id: 'lynnanderson@smith.net', + identifierType: 'email', + type: 'ITERABLE-users', + }, + ], + mappedToDestination: 'true', + sources: { + batch_id: 'f5f240d0-0acb-46e0-b043-57fb0aabbadd', + job_id: '1zAj94bEy8komdqnYtSoDp0VmGs/Syncher', + job_run_id: 'c5tar6cqgmgmcjvupdhg', + task_id: 'tt_10_rows_check', + task_run_id: 'c5tar6cqgmgmcjvupdi0', + version: 'release.v1.6.8', + }, + device: { + token: 54321, + }, + }, + messageId: '2f052f7c-f694-4849-a7ed-a432f7ffa0a4', + originalTimestamp: '2021-10-28T14:03:50.503Z', + receivedAt: '2021-10-28T14:03:46.567Z', + recordId: '8', + request_ip: '10.1.94.92', + rudderId: 'c0f6843e-e3d6-4946-9752-fa339fbadef2', + sentAt: '2021-10-28T14:03:50.503Z', + timestamp: '2021-10-28T14:03:46.566Z', + traits: { + administrative_unit: 'Minnesota', + am_pm: 'AM', + boolean: true, + firstname: 'Jacqueline', + pPower: 'AM', + userId: 'Jacqueline', + }, + type: 'identify', + userId: 'lynnanderson@smith.net', + }, + metadata: { + jobId: 5, + }, + destination: { + ID: '1zia9wKshXt80YksLmUdJnr7IHI', + Name: 'test_iterable', + DestinationDefinition: { + ID: '1iVQvTRMsPPyJzwol0ifH93QTQ6', + Name: 'ITERABLE', + DisplayName: 'Iterable', + Config: { + destConfig: { + defaultConfig: [ + 'apiKey', + 'mapToSingleEvent', + 'trackAllPages', + 'trackCategorisedPages', + 'trackNamedPages', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + apiKey: '12345', + mapToSingleEvent: true, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: true, + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + libraries: [], + request: { + query: {}, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + event: 'product added', + type: 'track', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + campaignId: '1', + templateId: '0', + orderId: 10000, + total: 1000, + products: [ + { + product_id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + price: '19', + position: '1', + category: 'cars', + url: 'https://www.example.com/product/path', + image_url: 'https://www.example.com/product/path.jpg', + quantity: '2', + }, + { + product_id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + price: '192', + quantity: 22, + position: '12', + category: 'Cars2', + url: 'https://www.example.com/product/path2', + image_url: 'https://www.example.com/product/path.jpg2', + }, + ], + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + jobId: 6, + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + message: { + type: 'page', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + metadata: { + jobId: 7, + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + message: { + type: 'alias', + sentAt: '2020-08-28T16:26:16.473Z', + context: { + library: { + name: 'analytics-node', + version: '0.0.3', + }, + }, + _metadata: { + nodeVersion: '10.22.0', + }, + messageId: + 'node-6f62b91e789a636929ca38aed01c5f6e-103c720d-81bd-4742-98d6-d45a65aed23e', + properties: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + userId: 'new@email.com', + previousId: 'old@email.com', + anonymousId: 'abcdeeeeeeeexxxx102', + originalTimestamp: '2020-08-28T16:26:06.468Z', + }, + metadata: { + jobId: 8, + }, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + ], + destType: 'iterable', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/trackBulk', + headers: { + 'Content-Type': 'application/json', + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + }, + params: {}, + body: { + JSON: { + events: [ + { + dataFields: { + subject: 'resume validate', + sendtime: '2020-01-01', + sendlocation: 'akashdeep@gmail.com', + }, + userId: 'abcdeeeeeeeexxxx102', + eventName: 'Email Opened', + createdAt: 1598631966468, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/bulkUpdate', + headers: { + 'Content-Type': 'application/json', + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + }, + params: {}, + body: { + JSON: { + users: [ + { + email: 'manashi@website.com', + dataFields: { + city: 'Bangalore', + name: 'manashi', + email: 'manashi@website.com', + country: 'India', + }, + userId: 'abcdeeeeeeeexxxx102', + preferUserId: true, + mergeNestedObjects: true, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 3, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/trackBulk', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + events: [ + { + email: 'sayan@gmail.com', + dataFields: { + path: '/abc', + referrer: '', + search: '', + title: '', + url: '', + category: 'test-category', + }, + userId: '12345', + eventName: 'ApplicationLoaded page', + createdAt: 1571051718299, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 4, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: '12345', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/commerce/updateCart', + headers: { + 'Content-Type': 'application/json', + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + }, + params: {}, + body: { + JSON: { + user: { + email: 'sayan@gmail.com', + dataFields: { + email: 'sayan@gmail.com', + }, + userId: '12345', + preferUserId: true, + mergeNestedObjects: true, + }, + items: [ + { + id: '507f1f77bcf86cd799439011', + sku: '45790-32', + name: 'Monopoly: 3rd Edition', + categories: ['cars'], + price: 19, + quantity: 2, + imageUrl: 'https://www.example.com/product/path.jpg', + url: 'https://www.example.com/product/path', + }, + { + id: '507f1f77bcf86cd7994390112', + sku: '45790-322', + name: 'Monopoly: 3rd Edition2', + categories: ['Cars2'], + price: 192, + quantity: 22, + imageUrl: 'https://www.example.com/product/path.jpg2', + url: 'https://www.example.com/product/path2', + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 6, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/events/trackBulk', + headers: { + 'Content-Type': 'application/json', + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + }, + params: {}, + body: { + JSON: { + events: [ + { + dataFields: { + url: 'https://dominos.com', + title: 'Pizza', + referrer: 'https://google.com', + }, + userId: 'abcdeeeeeeeexxxx102', + createdAt: 1598631966468, + eventName: 'undefined page', + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 7, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: true, + trackCategorisedPages: false, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/updateEmail', + headers: { + 'Content-Type': 'application/json', + api_key: '62d12498c37c4fd8a1a546c2d35c2f60', + }, + params: {}, + body: { + JSON: { + currentEmail: 'old@email.com', + newEmail: 'new@email.com', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 8, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: '62d12498c37c4fd8a1a546c2d35c2f60', + mapToSingleEvent: false, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: false, + }, + Enabled: true, + }, + }, + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.iterable.com/api/users/bulkUpdate', + headers: { + 'Content-Type': 'application/json', + api_key: '12345', + }, + params: {}, + body: { + JSON: { + users: [ + { + email: 'lynnanderson@smith.net', + dataFields: { + administrative_unit: 'Minnesota', + am_pm: 'AM', + boolean: true, + firstname: 'Jacqueline', + pPower: 'AM', + userId: 'Jacqueline', + email: 'lynnanderson@smith.net', + }, + userId: 'lynnanderson@smith.net', + preferUserId: true, + mergeNestedObjects: true, + }, + ], + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 5, + }, + ], + batched: true, + statusCode: 200, + destination: { + ID: '1zia9wKshXt80YksLmUdJnr7IHI', + Name: 'test_iterable', + DestinationDefinition: { + ID: '1iVQvTRMsPPyJzwol0ifH93QTQ6', + Name: 'ITERABLE', + DisplayName: 'Iterable', + Config: { + destConfig: { + defaultConfig: [ + 'apiKey', + 'mapToSingleEvent', + 'trackAllPages', + 'trackCategorisedPages', + 'trackNamedPages', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: [], + supportedMessageTypes: ['identify', 'page', 'screen', 'track'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + 'cordova', + ], + supportsVisualMapper: true, + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + apiKey: '12345', + mapToSingleEvent: true, + trackAllPages: false, + trackCategorisedPages: true, + trackNamedPages: true, + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/june/processor/data.ts b/test/integrations/destinations/june/processor/data.ts new file mode 100644 index 0000000000..dfe35ed0a3 --- /dev/null +++ b/test/integrations/destinations/june/processor/data.ts @@ -0,0 +1,755 @@ +export const data = [ + { + name: 'june', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'identify', + context: { + traits: { + name: 'John Doe', + email: 'johndoe@gmail.com', + age: 25, + }, + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from "userIdOnly"', + statTags: { + destType: 'JUNE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'identify', + sentAt: '2022-01-20T13:39:21.033Z', + channel: 'web', + userId: '5136633649', + context: { + traits: { + name: 'John Doe', + email: 'johndoe@gmail.com', + age: 25, + }, + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/identify', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + userId: '5136633649', + traits: { + name: 'John Doe', + email: 'johndoe@gmail.com', + age: 25, + }, + timestamp: '2022-01-20T13:39:21.032Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'track', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + groupId: '91Yb32830', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from "userIdOnly"', + statTags: { + destType: 'JUNE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'track', + event: 'Product Reviewed', + userId: '5136633649', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/track', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + userId: '5136633649', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + }, + timestamp: '2022-01-20T13:39:21.032Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'track', + event: 'Product Reviewed', + userId: '5136633649', + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/track', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + userId: '5136633649', + event: 'Product Reviewed', + timestamp: '2022-01-20T13:39:21.032Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'track', + event: 'Product Reviewed', + userId: '5136633649', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + groupId: '91Yb32830', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/track', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + userId: '5136633649', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + }, + timestamp: '2022-01-20T13:39:21.032Z', + context: { + groupId: '91Yb32830', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'track', + event: 'Product Reviewed', + userId: '5136633649', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + groupId: 'test-12345', + }, + context: { + externalId: [ + { + type: 'juneGroupId', + id: '91Yb32830', + }, + ], + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/track', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + userId: '5136633649', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + }, + timestamp: '2022-01-20T13:39:21.032Z', + context: { + groupId: '91Yb32830', + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'group', + userId: '5136633649', + traits: { + name: 'Initech', + employees: 500, + headquarters: 'Redwood City, California, United States', + ceo: 'John Doe', + revenue: 70000000, + currency: 'USD', + groupId: '9230AUbd2138h', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/group', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + userId: '5136633649', + groupId: '9230AUbd2138h', + traits: { + name: 'Initech', + employees: 500, + headquarters: 'Redwood City, California, United States', + ceo: 'John Doe', + revenue: 70000000, + currency: 'USD', + }, + timestamp: '2022-01-20T13:39:21.032Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'should fail with no message type', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + groupId: '91Yb32830', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Event type is required', + statTags: { + destType: 'JUNE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'should fail for alias message type', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'alias', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + groupId: '91Yb32830', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Event type "alias" is not supported', + statTags: { + destType: 'JUNE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'june', + description: 'should transform for page event with fully populated properties', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + message: { + type: 'page', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + groupId: '91Yb32830', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.june.so/api/page', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic 93EMyDLvfpbRxxYn', + }, + params: {}, + body: { + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + properties: { + review_id: '12345', + product_id: '123', + rating: 3, + review_body: 'Average product, expected much more.', + }, + timestamp: '2022-01-20T13:39:21.032Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/june/router/data.ts b/test/integrations/destinations/june/router/data.ts new file mode 100644 index 0000000000..cf8c4f0011 --- /dev/null +++ b/test/integrations/destinations/june/router/data.ts @@ -0,0 +1,146 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + metadata: { + jobId: 1, + }, + message: { + type: 'identify', + sentAt: '2022-01-20T13:39:21.033Z', + channel: 'web', + userId: '5136633649', + context: { + traits: { + name: 'John Doe', + email: 'johndoe@gmail.com', + age: 25, + }, + }, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + metadata: { + jobId: 2, + }, + message: { + type: 'track', + event: 'Product Reviewed', + properties: { + review_id: '12345', + product_id: '123', + rating: 3.0, + review_body: 'Average product, expected much more.', + groupId: '91Yb32830', + }, + context: {}, + rudderId: '553b5522-c575-40a7-8072-9741c5f9a647', + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + originalTimestamp: '2022-01-20T13:39:21.032Z', + }, + }, + ], + destType: 'june', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batched: false, + batchedRequest: { + body: { + FORM: {}, + JSON: { + anonymousId: 'bf412108-0357-4330-b119-7305e767823c', + timestamp: '2022-01-20T13:39:21.032Z', + traits: { + age: 25, + email: 'johndoe@gmail.com', + name: 'John Doe', + }, + userId: '5136633649', + }, + JSON_ARRAY: {}, + XML: {}, + }, + endpoint: 'https://api.june.so/api/identify', + files: {}, + headers: { + Authorization: 'Basic 93EMyDLvfpbRxxYn', + 'Content-Type': 'application/json', + }, + method: 'POST', + params: {}, + type: 'REST', + version: '1', + }, + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + metadata: [ + { + jobId: 1, + }, + ], + statusCode: 200, + }, + { + destination: { + Config: { + apiKey: '93EMyDLvfpbRxxYn', + }, + ID: 'june123', + }, + batched: false, + error: 'Missing required value from "userIdOnly"', + metadata: [ + { + jobId: 2, + }, + ], + statTags: { + destType: 'JUNE', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/kafka/batch/data.ts b/test/integrations/destinations/kafka/batch/data.ts new file mode 100644 index 0000000000..0cc1d75c24 --- /dev/null +++ b/test/integrations/destinations/kafka/batch/data.ts @@ -0,0 +1,1492 @@ +export const data = [ + { + name: 'kafka', + description: 'Test 0', + feature: 'batch', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + destType: 'kafka', + input: [ + { + message: { + userId: 'user1', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user1', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: '6f27a4da-cefb-4800-acf1-f467e8aab91c', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + metadata: { + rudderId: 'user1<<>>new-topic', + jobId: 1, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user2', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user2', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: 'fe182d9e-e86e-4db5-ae12-f4b399555fcc', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + metadata: { + rudderId: 'user2<<>>new-topic', + jobId: 2, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user3', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user3', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: '2803e656-77ff-47ca-9606-90663f9aed38', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + metadata: { + rudderId: 'user3<<>>new-topic', + jobId: 3, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user4', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user4', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + metadata: { + rudderId: 'user4<<>>new-topic', + jobId: 4, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user5', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user5', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + schemaId: 'schema001', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + schemaId: 'schema001', + topic: 'new-topic', + }, + metadata: { + rudderId: 'user5<<>>new-topic', + jobId: 5, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user6', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user6', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-1', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-1', + }, + metadata: { + rudderId: 'user6<<>>topic-1', + jobId: 6, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user7', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user7', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-1', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-1', + }, + metadata: { + rudderId: 'user7<<>>topic-1', + jobId: 7, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user8', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user8', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-2', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-2', + }, + metadata: { + rudderId: 'user8<<>>topic-2', + jobId: 8, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user8', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user8', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-2', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-2', + }, + metadata: { + rudderId: 'user8<<>>topic-2', + jobId: 9, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + message: { + userId: 'user8', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user8', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-3', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-3', + }, + metadata: { + rudderId: 'user8<<>>topic-3', + jobId: 10, + }, + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + }, + output: { + response: { + status: 200, + body: [ + { + batched: true, + statusCode: 200, + batchedRequest: [ + { + userId: 'user1', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user1', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: '6f27a4da-cefb-4800-acf1-f467e8aab91c', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + { + userId: 'user2', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user2', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: 'fe182d9e-e86e-4db5-ae12-f4b399555fcc', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + { + userId: 'user3', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user3', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: '2803e656-77ff-47ca-9606-90663f9aed38', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + { + userId: 'user4', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user4', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'new-topic', + }, + { + userId: 'user5', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user5', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + schemaId: 'schema001', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + schemaId: 'schema001', + topic: 'new-topic', + }, + ], + metadata: [ + { rudderId: 'user1<<>>new-topic', jobId: 1 }, + { + rudderId: 'user2<<>>new-topic', + jobId: 2, + }, + { + rudderId: 'user3<<>>new-topic', + jobId: 3, + }, + { + rudderId: 'user4<<>>new-topic', + jobId: 4, + }, + { + rudderId: 'user5<<>>new-topic', + jobId: 5, + }, + ], + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + batched: true, + statusCode: 200, + batchedRequest: [ + { + userId: 'user6', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user6', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-1', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-1', + }, + { + userId: 'user7', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user7', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-1', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-1', + }, + ], + metadata: [ + { + rudderId: 'user6<<>>topic-1', + jobId: 6, + }, + { + rudderId: 'user7<<>>topic-1', + jobId: 7, + }, + ], + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + batched: true, + statusCode: 200, + batchedRequest: [ + { + userId: 'user8', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user8', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-2', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-2', + }, + { + userId: 'user8', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user8', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-2', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-2', + }, + ], + metadata: [ + { + rudderId: 'user8<<>>topic-2', + jobId: 8, + }, + { + rudderId: 'user8<<>>topic-2', + jobId: 9, + }, + ], + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + { + batched: true, + statusCode: 200, + batchedRequest: [ + { + userId: 'user8', + message: { + type: 'identify', + sentAt: '2021-07-08T02:45:11.329+05:30', + userId: 'user8', + context: { + ip: '14.5.67.21', + traits: { + trait1: 'new-val', + }, + library: { + name: 'http', + }, + }, + integrations: { + All: true, + KAFKA: { + topic: 'topic-3', + }, + }, + messageId: '87c98fc2-561b-4631-8cd6-1d02cdd1429f', + timestamp: '2020-02-02T00:23:09.544Z', + receivedAt: '2021-07-08T02:45:06.851+05:30', + request_ip: '[::1]', + anonymousId: 'anon-id-new', + originalTimestamp: '2021-07-08T02:45:11.329+05:30', + }, + topic: 'topic-3', + }, + ], + metadata: [ + { + rudderId: 'user8<<>>topic-3', + jobId: 10, + }, + ], + destination: { + ID: '1uzGR4rn915R6Xts9KRfWAzmgGL', + Name: 'local-kafka-test', + DestinationDefinition: { + ID: '1c81NzcId5roSqvQ1R57zhIsC01', + Name: 'KAFKA', + DisplayName: 'Apache Kafka', + Config: { + destConfig: { + defaultConfig: [ + 'hostName', + 'port', + 'topic', + 'sslEnabled', + 'caCertificate', + 'useSASL', + 'saslType', + 'username', + 'password', + ], + }, + excludeKeys: [], + includeKeys: [], + saveDestinationResponse: true, + secretKeys: ['password'], + supportedSourceTypes: [ + 'android', + 'ios', + 'web', + 'unity', + 'amp', + 'cloud', + 'warehouse', + 'reactnative', + 'flutter', + ], + transformAt: 'processor', + transformAtV1: 'processor', + }, + ResponseRules: null, + }, + Config: { + caCertificate: 'caCertificate', + hostName: 'localhost', + password: 'password', + port: '29092', + saslType: 'sha256', + sslEnabled: true, + topic: 'new-topic', + useSASL: true, + username: 'username', + }, + Enabled: true, + Transformations: [], + IsProcessorEnabled: true, + }, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/kafka/processor/data.ts b/test/integrations/destinations/kafka/processor/data.ts new file mode 100644 index 0000000000..1d5ce820d0 --- /dev/null +++ b/test/integrations/destinations/kafka/processor/data.ts @@ -0,0 +1,795 @@ +export const data = [ + { + name: 'kafka', + description: 'Test case with null destination config', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: null, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: true, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 0', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 0', + rudderId: 'randomRudderId', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: true, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + userId: 'userId', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case without userId', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: null, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: true, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + }, + metadata: { + jobId: 'jobId 1', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 1', + rudderId: 'randomRudderId', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: true, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + }, + userId: 'anonymousId', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case with null dest config and avro schema', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: null, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: { + schemaId: 'schema001', + }, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 2', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 2', + rudderId: 'randomRudderId', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: { + schemaId: 'schema001', + }, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + userId: 'userId', + schemaId: 'schema001', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case with null dest config and integrations topic', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: null, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: { + topic: 'specific-topic', + }, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 3', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 3', + rudderId: 'randomRudderId<<>>specific-topic', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + integrations: { + Kafka: { + topic: 'specific-topic', + }, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + userId: 'userId', + topic: 'specific-topic', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case with dest config with default topic', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: { + topic: 'default-topic', + }, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 4', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 4', + rudderId: 'randomRudderId<<>>default-topic', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'event', + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + userId: 'userId', + topic: 'default-topic', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case with dest config with event type topic', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: { + topic: 'default-topic', + enableMultiTopic: true, + eventTypeToTopicMap: [ + { + from: 'identify', + to: 'identify-topic', + }, + { + from: 'page', + to: 'page-topic', + }, + { + from: 'screen', + to: 'screen-topic', + }, + { + from: 'group', + to: 'group-topic', + }, + { + from: 'alias', + to: 'alias-topic', + }, + ], + eventToTopicMap: [ + { + from: 'Product Added', + to: 'product-added', + }, + ], + }, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'identify', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 5', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 5', + rudderId: 'randomRudderId<<>>identify-topic', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'identify', + userId: 'userId', + }, + userId: 'userId', + topic: 'identify-topic', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case with dest config with event name topic', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: { + topic: 'default-topic', + enableMultiTopic: true, + eventTypeToTopicMap: [ + { + from: 'identify', + to: 'identify-topic', + }, + { + from: 'page', + to: 'page-topic', + }, + { + from: 'screen', + to: 'screen-topic', + }, + { + from: 'group', + to: 'group-topic', + }, + { + from: 'alias', + to: 'alias-topic', + }, + ], + eventToTopicMap: [ + { + from: 'Product Added', + to: 'product-added', + }, + ], + }, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'Product Added', + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 6', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 6', + rudderId: 'randomRudderId<<>>product-added', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'Product Added', + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + userId: 'userId', + topic: 'product-added', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'kafka', + description: 'Test case with dest config with event name topic no match', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + ID: 'kafkadestinationid', + Name: 'Kafka', + Config: { + topic: 'default-topic', + enableMultiTopic: true, + eventTypeToTopicMap: [ + { + from: 'identify', + to: 'identify-topic', + }, + { + from: 'page', + to: 'page-topic', + }, + { + from: 'screen', + to: 'screen-topic', + }, + { + from: 'group', + to: 'group-topic', + }, + { + from: 'alias', + to: 'alias-topic', + }, + ], + eventToTopicMap: [ + { + from: 'Product Added', + to: 'product-added', + }, + ], + }, + Enabled: true, + IsProcessorEnabled: true, + }, + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'Product Added No match', + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + metadata: { + jobId: 'jobId 7', + rudderId: 'randomRudderId', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + metadata: { + jobId: 'jobId 7', + rudderId: 'randomRudderId<<>>default-topic', + }, + output: { + message: { + anonymousId: 'anonymousId', + context: { + library: { + name: 'analytics-go', + version: '3.0.0', + }, + }, + event: 'Product Added No match', + messageId: 'messageId', + originalTimestamp: '2019-07-18T15:00:00Z', + properties: { + key: 'value', + }, + receivedAt: '2019-07-18T15:00:00Z', + sentAt: '2019-07-18T15:00:00Z', + timestamp: '2019-07-18T15:00:00Z', + type: 'track', + userId: 'userId', + }, + userId: 'userId', + topic: 'default-topic', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/keen/processor/data.ts b/test/integrations/destinations/keen/processor/data.ts new file mode 100644 index 0000000000..c785decb8e --- /dev/null +++ b/test/integrations/destinations/keen/processor/data.ts @@ -0,0 +1,489 @@ +export const data = [ + { + name: 'keen', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + type: 'page', + context: null, + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + traits: { + email: 'test@gmail.com', + anonymousId: 'anon-id', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + userId: '12345', + keen: { + addons: [], + }, + anonymousId: '00000000000000000000000000', + user: { + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + }, + userId: '12345', + }, + }, + FORM: {}, + }, + files: {}, + endpoint: + 'https://api.keen.io/3.0/projects/abcde/events/Viewed ApplicationLoaded page', + userId: '12345', + headers: { + 'Content-Type': 'application/json', + Authorization: 'xyz', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'keen', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + anonymousId: '123456', + email: 'sayan@gmail.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + ip: '0.0.0.0', + age: 26, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + integrations: { + All: true, + }, + traits: { + anonymousId: 'my-anon-id', + email: 'test@gmail.com', + address: { + city: 'kolkata-1', + country: 'US', + postalCode: 712136, + state: 'CA', + street: '', + }, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Event type identify is not supported', + statTags: { + destType: 'KEEN', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'keen', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + traits: { + email: 'test@gmail.com', + anonymousId: 'anon-id', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + search: 'abc', + request_ip: '0.0.0.0', + title: 'Test Page', + url: 'www.rudderlabs.com', + referrer: 'Rudder', + userId: '12345', + keen: { + addons: [ + { + input: { + ip: 'request_ip', + }, + name: 'keen:ip_to_geo', + output: 'ip_geo_info', + }, + { + input: { + ua_string: 'user_agent', + }, + name: 'keen:ua_parser', + output: 'parsed_user_agent', + }, + ], + }, + anonymousId: '00000000000000000000000000', + user: { + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + }, + userId: '12345', + }, + path: '/test', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + }, + FORM: {}, + }, + files: {}, + endpoint: + 'https://api.keen.io/3.0/projects/abcde/events/Viewed ApplicationLoaded page', + userId: '12345', + headers: { + 'Content-Type': 'application/json', + Authorization: 'xyz', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'keen', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'test track event', + request_ip: '1.1.1.1', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + traits: { + email: 'test@gmail.com', + anonymousId: 'anon-id', + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + request_ip: '1.1.1.1', + user_time_spent: 50000, + userId: '12345', + keen: { + addons: [ + { + input: { + ip: 'request_ip', + }, + name: 'keen:ip_to_geo', + output: 'ip_geo_info', + }, + { + input: { + ua_string: 'user_agent', + }, + name: 'keen:ua_parser', + output: 'parsed_user_agent', + }, + ], + }, + anonymousId: '00000000000000000000000000', + user: { + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + }, + userId: '12345', + }, + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://api.keen.io/3.0/projects/abcde/events/test track event', + userId: '12345', + headers: { + 'Content-Type': 'application/json', + Authorization: 'xyz', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/keen/router/data.ts b/test/integrations/destinations/keen/router/data.ts new file mode 100644 index 0000000000..d46d2363e2 --- /dev/null +++ b/test/integrations/destinations/keen/router/data.ts @@ -0,0 +1,308 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'track', + messageId: 'ec5481b6-a926-4d2e-b293-0b3a77c4d3be', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.300Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + event: 'test track event', + request_ip: '1.1.1.1', + properties: { + user_actual_role: 'system_admin', + user_actual_id: 12345, + user_time_spent: 50000, + }, + integrations: { + All: true, + }, + traits: { + email: 'test@gmail.com', + anonymousId: 'anon-id', + }, + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + traits: { + email: 'sayan@gmail.com', + anonymousId: '12345', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + type: 'page', + messageId: '5e10d13a-bf9a-44bf-b884-43a9e591ea71', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T11:15:18.299Z', + anonymousId: '00000000000000000000000000', + userId: '12345', + properties: { + path: '/test', + referrer: 'Rudder', + search: 'abc', + title: 'Test Page', + url: 'www.rudderlabs.com', + }, + traits: { + email: 'test@gmail.com', + anonymousId: 'anon-id', + }, + integrations: { + All: true, + }, + name: 'ApplicationLoaded', + sentAt: '2019-10-14T11:15:53.296Z', + }, + metadata: { + jobId: 2, + }, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + ], + destType: 'keen', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + user_actual_id: 12345, + user_actual_role: 'system_admin', + request_ip: '1.1.1.1', + user_time_spent: 50000, + userId: '12345', + keen: { + addons: [ + { + input: { + ip: 'request_ip', + }, + name: 'keen:ip_to_geo', + output: 'ip_geo_info', + }, + { + input: { + ua_string: 'user_agent', + }, + name: 'keen:ua_parser', + output: 'parsed_user_agent', + }, + ], + }, + anonymousId: '00000000000000000000000000', + user: { + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + }, + userId: '12345', + }, + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + }, + FORM: {}, + }, + files: {}, + endpoint: 'https://api.keen.io/3.0/projects/abcde/events/test track event', + userId: '12345', + headers: { + 'Content-Type': 'application/json', + Authorization: 'xyz', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + { + batchedRequest: { + body: { + XML: {}, + JSON_ARRAY: {}, + JSON: { + search: 'abc', + request_ip: '0.0.0.0', + title: 'Test Page', + url: 'www.rudderlabs.com', + referrer: 'Rudder', + userId: '12345', + keen: { + addons: [ + { + input: { + ip: 'request_ip', + }, + name: 'keen:ip_to_geo', + output: 'ip_geo_info', + }, + { + input: { + ua_string: 'user_agent', + }, + name: 'keen:ua_parser', + output: 'parsed_user_agent', + }, + ], + }, + anonymousId: '00000000000000000000000000', + user: { + traits: { + anonymousId: 'anon-id', + email: 'test@gmail.com', + }, + userId: '12345', + }, + path: '/test', + user_agent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + }, + FORM: {}, + }, + files: {}, + endpoint: + 'https://api.keen.io/3.0/projects/abcde/events/Viewed ApplicationLoaded page', + userId: '12345', + headers: { + 'Content-Type': 'application/json', + Authorization: 'xyz', + }, + version: '1', + params: {}, + type: 'REST', + method: 'POST', + statusCode: 200, + }, + metadata: [ + { + jobId: 2, + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + projectID: 'abcde', + writeKey: 'xyz', + ipAddon: true, + uaAddon: true, + urlAddon: true, + referrerAddon: true, + }, + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/kissmetrics/processor/data.ts b/test/integrations/destinations/kissmetrics/processor/data.ts new file mode 100644 index 0000000000..ecd247a956 --- /dev/null +++ b/test/integrations/destinations/kissmetrics/processor/data.ts @@ -0,0 +1,894 @@ +export const data = [ + { + name: 'kissmetrics', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + originalTimestamp: '2020-01-24T06:29:02.358Z', + properties: { + path: '/tests/html/index2.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index2.html', + }, + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53708', + sentAt: '2020-01-24T06:29:02.359Z', + timestamp: '2020-01-24T11:59:02.402+05:30', + type: 'page', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 1, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/e', + headers: {}, + params: { + 'Page-path': '/tests/html/index2.html', + 'Page-referrer': '', + 'Page-search': '', + 'Page-title': '', + 'Page-url': 'http://localhost/tests/html/index2.html', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _n: 'Loaded a Page', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + statusCode: 200, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 1, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + }, + { + name: 'kissmetrics', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + city: 'Disney-1', + country: 'India', + email: 'sayan@disney.com', + firstname: 'Sayan', + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2020-01-24T11:59:02.402+05:30', + type: 'identify', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 2, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/s', + headers: {}, + params: { + city: 'Disney-1', + country: 'India', + email: 'sayan@disney.com', + firstname: 'Sayan', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + statusCode: 200, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 2, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + }, + { + name: 'kissmetrics', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2020-01-24T11:59:02.402+05:30', + type: 'identify', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 2, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/s', + headers: {}, + params: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + statusCode: 200, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 2, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + }, + { + name: 'kissmetrics', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + event: 'test revenue kissmetrics', + integrations: { + All: true, + }, + messageId: 'a6a0ad5a-bd26-4f19-8f75-38484e580fc7', + originalTimestamp: '2020-01-24T06:29:02.364Z', + properties: { + currency: 'USD', + revenue: 50, + }, + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53710', + sentAt: '2020-01-24T06:29:02.364Z', + timestamp: '2020-01-24T11:59:02.403+05:30', + type: 'track', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 3, + messageId: 'a6a0ad5a-bd26-4f19-8f75-38484e580fc7', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/e', + headers: {}, + params: { + 'test revenue kissmetrics-currency': 'USD', + 'test revenue kissmetrics - revenue': 50, + 'Billing Amount': 50, + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _n: 'test revenue kissmetrics', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + statusCode: 200, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 3, + messageId: 'a6a0ad5a-bd26-4f19-8f75-38484e580fc7', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + }, + { + name: 'kissmetrics', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: '79313729-7fe5-4204-963a-dc46f4205e4e', + originalTimestamp: '2020-01-24T06:29:02.366Z', + previousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53711', + sentAt: '2020-01-24T06:29:02.366Z', + timestamp: '2020-01-24T11:59:02.403+05:30', + type: 'alias', + userId: '1234abc', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 4, + messageId: '79313729-7fe5-4204-963a-dc46f4205e4e', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/a', + headers: {}, + params: { + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _n: '1234abc', + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '1234abc', + statusCode: 200, + }, + statusCode: 200, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 4, + messageId: '79313729-7fe5-4204-963a-dc46f4205e4e', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + }, + { + name: 'kissmetrics', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + event: 'KM Order Completed', + integrations: { + All: true, + }, + messageId: 'aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a', + originalTimestamp: '2020-01-24T06:29:02.367Z', + properties: { + affiliation: 'Google Store', + checkout_id: 'fksdjfsdjfisjf9sdfjsd9f', + coupon: 'hasbros', + currency: 'USD', + discount: 2.5, + order_id: '50314b8e9bcf000000000000', + products: [ + { + category: 'Games', + image_url: 'https:///www.example.com/product/path.jpg', + name: 'Monopoly: 3rd Edition', + price: 19, + product_id: '507f1f77bcf86cd799439011', + quantity: 1, + sku: '45790-32', + url: 'https://www.example.com/product/path', + }, + { + category: 'Games', + name: 'Uno Card Game', + price: 3, + product_id: '505bd76785ebb509fc183733', + quantity: 2, + sku: '46493-32', + }, + ], + revenue: 25, + shipping: 3, + subtotal: 22.5, + tax: 2, + total: 27.5, + }, + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53712', + sentAt: '2020-01-24T06:29:02.368Z', + timestamp: '2020-01-24T11:59:02.402+05:30', + type: 'track', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 5, + messageId: 'aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/e', + headers: {}, + params: { + 'KM Order Completed-affiliation': 'Google Store', + 'KM Order Completed-checkout_id': 'fksdjfsdjfisjf9sdfjsd9f', + 'KM Order Completed-coupon': 'hasbros', + 'KM Order Completed-currency': 'USD', + 'KM Order Completed-discount': 2.5, + 'KM Order Completed-order_id': '50314b8e9bcf000000000000', + 'KM Order Completed - revenue': 25, + 'Billing Amount': 25, + 'KM Order Completed-shipping': 3, + 'KM Order Completed-subtotal': 22.5, + 'KM Order Completed-tax': 2, + 'KM Order Completed-total': 27.5, + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _n: 'KM Order Completed', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 5, + messageId: 'aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/s', + headers: {}, + params: { + 'KM Order Completed-category': 'Games', + 'KM Order Completed-image_url': 'https:///www.example.com/product/path.jpg', + 'KM Order Completed-name': 'Monopoly: 3rd Edition', + 'KM Order Completed-price': 19, + 'KM Order Completed-product_id': '507f1f77bcf86cd799439011', + 'KM Order Completed-quantity': 1, + 'KM Order Completed-sku': '45790-32', + 'KM Order Completed-url': 'https://www.example.com/product/path', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 5, + messageId: 'aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/s', + headers: {}, + params: { + 'KM Order Completed-category': 'Games', + 'KM Order Completed-name': 'Uno Card Game', + 'KM Order Completed-price': 3, + 'KM Order Completed-product_id': '505bd76785ebb509fc183733', + 'KM Order Completed-quantity': 2, + 'KM Order Completed-sku': '46493-32', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 5, + messageId: 'aa5f5e44-8756-40ad-ad1e-b0d3b9fa710a', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + statusCode: 200, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/kissmetrics/router/data.ts b/test/integrations/destinations/kissmetrics/router/data.ts new file mode 100644 index 0000000000..bba00edf96 --- /dev/null +++ b/test/integrations/destinations/kissmetrics/router/data.ts @@ -0,0 +1,293 @@ +export const data = [ + { + name: 'fb', + description: 'Test 0', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: {}, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + originalTimestamp: '2020-01-24T06:29:02.358Z', + properties: { + path: '/tests/html/index2.html', + referrer: '', + search: '', + title: '', + url: 'http://localhost/tests/html/index2.html', + }, + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53708', + sentAt: '2020-01-24T06:29:02.359Z', + timestamp: '2020-01-24T11:59:02.402+05:30', + type: 'page', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 1, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + { + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstname: 'Mickey', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + traits: { + city: 'Disney-1', + country: 'India', + email: 'sayan@disney.com', + firstname: 'Sayan', + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2020-01-24T11:59:02.402+05:30', + type: 'identify', + userId: '', + }, + metadata: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 2, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + }, + ], + destType: 'kissmetrics', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/e', + headers: {}, + params: { + 'Page-path': '/tests/html/index2.html', + 'Page-referrer': '', + 'Page-search': '', + 'Page-title': '', + 'Page-url': 'http://localhost/tests/html/index2.html', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _n: 'Loaded a Page', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + ], + metadata: [ + { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 1, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'GET', + endpoint: 'https://trk.kissmetrics.com/s', + headers: {}, + params: { + city: 'Disney-1', + country: 'India', + email: 'sayan@disney.com', + firstname: 'Sayan', + _k: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + _p: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + _t: '1579847342', + _d: 1, + }, + body: { + JSON: {}, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + statusCode: 200, + }, + ], + metadata: [ + { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + destinationId: '1WhcOCGgj9asZu850HvugU2C3Aq', + destinationType: 'KISSMETRICS', + jobId: 2, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + sourceId: '1WjrlZIy1d41MCceOrFbDVPnOPY', + }, + ], + batched: false, + statusCode: 200, + destination: { + Config: { + apiKey: '9432f11f70f8ce386f5110c8c924b3ec4f825256', + prefixProperties: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Kiss Metrics', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'KISSMETRICS', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'Kiss Metrics', + Transformations: [], + }, + }, + ], + }, + }, + }, + }, +]; diff --git a/test/integrations/destinations/leanplum/processor/data.ts b/test/integrations/destinations/leanplum/processor/data.ts index a866b035a8..207918a864 100644 --- a/test/integrations/destinations/leanplum/processor/data.ts +++ b/test/integrations/destinations/leanplum/processor/data.ts @@ -1,1708 +1,1708 @@ export const data = [ - { - name: 'leanplum', - description: 'Test 0', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id1', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + { + name: 'leanplum', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id1', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 1', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id2', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key__', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key__', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key__', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, - { - name: 'leanplum', - description: 'Test 2', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id3', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + }, + { + name: 'leanplum', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id2', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key__', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 3', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id3', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'page', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key__', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key__', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, - { - name: 'leanplum', - description: 'Test 4', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - name: 'Test Page Name', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id3', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'page', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + }, + { + name: 'leanplum', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id3', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'Test Page Name', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 5', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id4', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, - { - name: 'leanplum', - description: 'Test 6', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id5', - properties: { automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + }, + { + name: 'leanplum', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id3', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'page', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 7', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - integrations: { All: true }, - messageId: 'id6', - properties: { automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - error: "Missing required value from [\"properties.name\",\"event\"]", - statTags: { - destType: 'LEANPLUM', - errorCategory: 'dataValidation', - errorType: 'instrumentation', - feature: 'processor', - implementation: 'native', - module: 'destination', - }, - statusCode: 400, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, - { - name: 'leanplum', - description: 'Test 8', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - channel: 'web', - context: { - app: { - build: '1.0.0', - name: 'RudderLabs JavaScript SDK', - namespace: 'com.rudderlabs.javascript', - version: '1.0.0', - }, - library: { name: 'RudderLabs JavaScript SDK', version: '1.0.0' }, - userAgent: - 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', - locale: 'en-US', - ip: '0.0.0.0', - os: { name: '', version: '' }, - screen: { density: 2 }, - traits: { - id: 'some_developer_id', - createAt: '2019-10-14T09:03:17.562Z', - address: { country: 'USA', city: 'NY' }, - country: 'India', - city: 'Delhi', - }, - }, - type: 'identify', - messageId: '84e26acc-56a5-4835-8233-591137fca468', - originalTimestamp: '2019-10-14T09:03:17.562Z', - anonymousId: '00000000000000000000000000', - integrations: { All: true }, - sentAt: '2019-10-14T09:03:22.563Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + }, + { + name: 'leanplum', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + name: 'Test Page Name', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id3', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'page', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'setUserAttributes' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '00000000000000000000000000', - newUserId: 'some_developer_id', - userAttributes: { - id: 'some_developer_id', - createAt: '2019-10-14T09:03:17.562Z', - address: { country: 'USA', city: 'NY' }, - country: 'India', - city: 'Delhi', - }, - created: 1571043798, - locale: 'en-US', - country: 'USA', - city: 'NY', - time: 1571043798, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '00000000000000000000000000', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 9', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id1', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'Test Page Name', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, - { - name: 'leanplum', - description: 'Test 10', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'MainActivity', - integrations: { All: true }, - messageId: 'id1', - properties: { automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + }, + { + name: 'leanplum', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id4', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'advance' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - state: 'MainActivity', - deviceId: '5094f5704b9cf2b3', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 11', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - integrations: { All: true }, - messageId: 'id1', - properties: { automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'screen', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - error: "Missing required value from [\"properties.name\",\"event\"]", - statTags: { - destType: 'LEANPLUM', - errorCategory: 'dataValidation', - errorType: 'instrumentation', - feature: 'processor', - implementation: 'native', - module: 'destination', - }, - statusCode: 400, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, - { - name: 'leanplum', - description: 'Test 12', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'account: logged out', - integrations: { All: true }, - messageId: 'id1', - properties: { name: 'MainActivity', automatic: true }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'track', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + }, + { + name: 'leanplum', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id5', + properties: { automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'track' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - event: 'account: logged out', - deviceId: '5094f5704b9cf2b3', - params: { name: 'MainActivity', automatic: true }, - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, }, - }, + }, + ], + method: 'POST', + }, + pathSuffix: '', }, - { - name: 'leanplum', - description: 'Test 13', - feature: 'processor', - module: 'destination', - version: 'v0', - input: { - request: { - body: [ - { - message: { - anonymousId: '5094f5704b9cf2b3', - channel: 'mobile', - context: { - app: { - build: '1', - name: 'LeanPlumIntegrationAndroid', - namespace: 'com.android.SampleLeanPlum', - version: '1.0', - }, - device: { - id: '5094f5704b9cf2b3', - manufacturer: 'Google', - model: 'Android SDK built for x86', - name: 'generic_x86', - type: 'android', - }, - library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, - locale: 'en-US', - network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, - os: { name: 'Android', version: '8.1.0' }, - screen: { density: 420, height: 1794, width: 1080 }, - timezone: 'Asia/Kolkata', - traits: { anonymousId: '5094f5704b9cf2b3' }, - userAgent: - 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', - }, - event: 'account: logged out', - integrations: { All: true }, - messageId: 'id1', - properties: { name: 'MainActivity', automatic: true, total: 2.45, currency: 'USD' }, - originalTimestamp: '2020-03-12T09:05:03.421Z', - type: 'track', - sentAt: '2020-03-12T09:05:13.042Z', - }, - destination: { - Config: { - applicationId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - isDevelop: true, - useNativeSDK: false, - sendEvents: false, - }, - }, - }, - ], - method: 'POST', + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - pathSuffix: '', - }, - output: { - response: { - status: 200, - body: [ - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'start' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - deviceId: '5094f5704b9cf2b3', - appVersion: '1.0', - systemName: 'Android', - systemVersion: '8.1.0', - deviceName: 'generic_x86', - deviceModel: 'Android SDK built for x86', - userAttributes: { anonymousId: '5094f5704b9cf2b3' }, - locale: 'en-US', - timezone: 'Asia/Kolkata', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - { - output: { - version: '1', - type: 'REST', - method: 'POST', - endpoint: 'https://api.leanplum.com/api', - headers: { 'Content-Type': 'application/json' }, - params: { action: 'track' }, - body: { - JSON: { - apiVersion: '1.0.6', - appId: 'leanplum_application_id', - clientKey: 'leanplum_client_key', - userId: '5094f5704b9cf2b3', - event: 'account: logged out', - deviceId: '5094f5704b9cf2b3', - params: { name: 'MainActivity', automatic: true, total: 2.45, currency: 'USD' }, - value: 2.45, - currencyCode: 'USD', - time: 1584003903, - devMode: true, - }, - XML: {}, - JSON_ARRAY: {}, - FORM: {}, - }, - files: {}, - userId: '5094f5704b9cf2b3', - }, - statusCode: 200, - }, - ], + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', }, - }, + statusCode: 200, + }, + ], + }, }, + }, + { + name: 'leanplum', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + integrations: { All: true }, + messageId: 'id6', + properties: { automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from ["properties.name","event"]', + statTags: { + destType: 'LEANPLUM', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'leanplum', + description: 'Test 8', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { name: 'RudderLabs JavaScript SDK', version: '1.0.0' }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { name: '', version: '' }, + screen: { density: 2 }, + traits: { + id: 'some_developer_id', + createAt: '2019-10-14T09:03:17.562Z', + address: { country: 'USA', city: 'NY' }, + country: 'India', + city: 'Delhi', + }, + }, + type: 'identify', + messageId: '84e26acc-56a5-4835-8233-591137fca468', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '00000000000000000000000000', + integrations: { All: true }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'setUserAttributes' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '00000000000000000000000000', + newUserId: 'some_developer_id', + userAttributes: { + id: 'some_developer_id', + createAt: '2019-10-14T09:03:17.562Z', + address: { country: 'USA', city: 'NY' }, + country: 'India', + city: 'Delhi', + }, + created: 1571043798, + locale: 'en-US', + country: 'USA', + city: 'NY', + time: 1571043798, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '00000000000000000000000000', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'leanplum', + description: 'Test 9', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id1', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'leanplum', + description: 'Test 10', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { All: true }, + messageId: 'id1', + properties: { automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'advance' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + state: 'MainActivity', + deviceId: '5094f5704b9cf2b3', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'leanplum', + description: 'Test 11', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + integrations: { All: true }, + messageId: 'id1', + properties: { automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'screen', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + error: 'Missing required value from ["properties.name","event"]', + statTags: { + destType: 'LEANPLUM', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'processor', + implementation: 'native', + module: 'destination', + }, + statusCode: 400, + }, + ], + }, + }, + }, + { + name: 'leanplum', + description: 'Test 12', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'account: logged out', + integrations: { All: true }, + messageId: 'id1', + properties: { name: 'MainActivity', automatic: true }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'track', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'track' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + event: 'account: logged out', + deviceId: '5094f5704b9cf2b3', + params: { name: 'MainActivity', automatic: true }, + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + ], + }, + }, + }, + { + name: 'leanplum', + description: 'Test 13', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'android', + }, + library: { name: 'com.rudderstack.android.sdk.core', version: '1.0.1-beta.1' }, + locale: 'en-US', + network: { carrier: 'Android', bluetooth: false, cellular: true, wifi: true }, + os: { name: 'Android', version: '8.1.0' }, + screen: { density: 420, height: 1794, width: 1080 }, + timezone: 'Asia/Kolkata', + traits: { anonymousId: '5094f5704b9cf2b3' }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'account: logged out', + integrations: { All: true }, + messageId: 'id1', + properties: { name: 'MainActivity', automatic: true, total: 2.45, currency: 'USD' }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'track', + sentAt: '2020-03-12T09:05:13.042Z', + }, + destination: { + Config: { + applicationId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + isDevelop: true, + useNativeSDK: false, + sendEvents: false, + }, + }, + }, + ], + method: 'POST', + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'start' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + deviceId: '5094f5704b9cf2b3', + appVersion: '1.0', + systemName: 'Android', + systemVersion: '8.1.0', + deviceName: 'generic_x86', + deviceModel: 'Android SDK built for x86', + userAttributes: { anonymousId: '5094f5704b9cf2b3' }, + locale: 'en-US', + timezone: 'Asia/Kolkata', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.leanplum.com/api', + headers: { 'Content-Type': 'application/json' }, + params: { action: 'track' }, + body: { + JSON: { + apiVersion: '1.0.6', + appId: 'leanplum_application_id', + clientKey: 'leanplum_client_key', + userId: '5094f5704b9cf2b3', + event: 'account: logged out', + deviceId: '5094f5704b9cf2b3', + params: { name: 'MainActivity', automatic: true, total: 2.45, currency: 'USD' }, + value: 2.45, + currencyCode: 'USD', + time: 1584003903, + devMode: true, + }, + XML: {}, + JSON_ARRAY: {}, + FORM: {}, + }, + files: {}, + userId: '5094f5704b9cf2b3', + }, + statusCode: 200, + }, + ], + }, + }, + }, ]; diff --git a/test/integrations/destinations/mautic/processor/data.ts b/test/integrations/destinations/mautic/processor/data.ts index 630b42864f..fe1dc6c41a 100644 --- a/test/integrations/destinations/mautic/processor/data.ts +++ b/test/integrations/destinations/mautic/processor/data.ts @@ -43,7 +43,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -125,7 +124,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -206,7 +204,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -287,7 +284,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -354,7 +350,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -430,7 +425,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -534,7 +528,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -638,7 +631,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -699,7 +691,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -775,7 +766,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -835,7 +825,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -896,7 +885,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -953,7 +941,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1010,7 +997,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1071,7 +1057,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1128,7 +1113,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1189,7 +1173,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1238,7 +1221,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1299,7 +1281,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1356,7 +1337,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1435,7 +1415,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1508,7 +1487,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1572,7 +1550,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1624,7 +1601,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1681,7 +1657,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1736,7 +1711,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1787,7 +1761,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1839,7 +1812,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1895,7 +1867,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -1945,7 +1916,6 @@ export const data = [ ], method: 'POST', }, - pathSuffix: '', }, output: { response: { diff --git a/test/integrations/destinations/mautic/router/data.ts b/test/integrations/destinations/mautic/router/data.ts index b1dd0697c4..9ac6c8714f 100644 --- a/test/integrations/destinations/mautic/router/data.ts +++ b/test/integrations/destinations/mautic/router/data.ts @@ -61,7 +61,6 @@ export const data = [ }, method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -190,7 +189,6 @@ export const data = [ }, method: 'POST', }, - pathSuffix: '', }, output: { response: { @@ -273,7 +271,6 @@ export const data = [ }, method: 'POST', }, - pathSuffix: '', }, output: { response: { diff --git a/test/integrations/destinations/mp/router/data.ts b/test/integrations/destinations/mp/router/data.ts index 389e19b047..7058929909 100644 --- a/test/integrations/destinations/mp/router/data.ts +++ b/test/integrations/destinations/mp/router/data.ts @@ -542,6 +542,887 @@ export const data = [ destType: 'mp', }, method: 'POST', + headers: { + 'X-Feature-Gzip-Support': '?1', + }, + }, + }, + output: { + response: { + status: 200, + body: { + output: [ + { + batchedRequest: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/import/', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic dGVzdF9hcGlfc2VjcmV0Og==', + }, + params: { + strict: 1, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + GZIP: { + payload: + '[{"event":"Loaded a Page","properties":{"ip":"0.0.0.0","$user_id":"hjikl","$current_url":"https://docs.rudderstack.com/destinations/mixpanel","$screen_dpi":2,"mp_lib":"RudderLabs JavaScript SDK","$app_build_number":"1.0.0","$app_version_string":"1.0.5","$insert_id":"dd266c67-9199-4a52-ba32-f46ddde67312","token":"test_api_token","distinct_id":"hjikl","time":1688624942,"name":"Contact Us","$browser":"Chrome","$browser_version":"79.0.3945.117"}}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + metadata: [ + { + jobId: 1, + additionalProp: 1, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: 'dummyApiKey', + apiSecret: 'test_api_secret', + token: 'test_api_token', + prefixProperties: true, + useNativeSDK: false, + useOldMapping: true, + strictMode: true, + }, + DestinationDefinition: { + DisplayName: 'Mixpanel', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'MP', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'MP', + Transformations: [], + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/engage/', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: { + batch: + '[{"$append":{"$transactions":{"$time":"2023-07-06T06:29:02.402Z","$amount":18.9}},"$token":"test_api_token","$distinct_id":"userId01"}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/import/', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic dGVzdF9hcGlfc2VjcmV0Og==', + }, + params: { + strict: 1, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + GZIP: { + payload: + '[{"event":"Product Viewed","properties":{"name":"T-Shirt","revenue":18.9,"$user_id":"userId01","$os":"iOS","$screen_height":1794,"$screen_width":1080,"$screen_dpi":420,"$carrier":"Android","$os_version":"8.1.0","$device":"generic_x86","$manufacturer":"Google","$model":"Android SDK built for x86","mp_device_model":"Android SDK built for x86","$wifi":true,"$bluetooth_enabled":false,"mp_lib":"com.rudderstack.android.sdk.core","$app_build_number":"1","$app_version_string":"1.0","$insert_id":"id2","token":"test_api_token","distinct_id":"userId01","time":1688624942,"$device_id":"anonId01"}}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 2, + additionalProp: 2, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: 'dummyApiKey', + apiSecret: 'test_api_secret', + token: 'test_api_token', + prefixProperties: true, + identityMergeApi: 'simplified', + strictMode: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Mixpanel', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'MP', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'MP', + Transformations: [], + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/engage/', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: { + batch: + '[{"$set":{"$email":"mickey@disney.com","$country_code":"USA","$city":"Disney","$initial_referrer":"https://docs.rudderstack.com","$initial_referring_domain":"docs.rudderstack.com","$firstName":"Mickey","$browser":"Chrome","$browser_version":"79.0.3945.117"},"$token":"test_api_token","$distinct_id":"e6ab2c5e-2cda-44a9-a962-e2f67df78bca","$ip":"0.0.0.0","$time":1688624942},{"$set":{"$created":"2020-01-23T08:54:02.362Z","$email":"mickey@disney.com","$country_code":"USA","$city":"Disney","$initial_referrer":"https://docs.rudderstack.com","$initial_referring_domain":"docs.rudderstack.com","$name":"Mickey Mouse","$firstName":"Mickey","$lastName":"Mouse","$browser":"Chrome","$browser_version":"79.0.3945.117"},"$token":"test_api_token","$distinct_id":"$device:anonId01","$ip":"0.0.0.0","$time":1688624942},{"$set":{"$carrier":"Android","$manufacturer":"Google","$model":"Android SDK built for x86","$screen_height":1794,"$screen_width":1080,"$wifi":true,"anonymousId":"5094f5704b9cf2b3","userId":"test_user_id","$ios_devices":["test_device_token"],"$os":"iOS","$ios_device_model":"Android SDK built for x86","$ios_version":"8.1.0","$ios_app_release":"1","$ios_app_version":"1.0"},"$token":"test_api_token","$distinct_id":"test_user_id","$time":null}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/import/', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Basic dGVzdF9hcGlfc2VjcmV0Og==', + }, + params: { + strict: 1, + }, + body: { + JSON: {}, + JSON_ARRAY: {}, + GZIP: { + payload: + '[{"event":"$merge","properties":{"$distinct_ids":["test_user_id","5094f5704b9cf2b3"],"token":"test_api_token"}}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 3, + additionalProp: 3, + }, + { + jobId: 4, + additionalProp: 4, + }, + { + jobId: 5, + additionalProp: 5, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: 'dummyApiKey', + apiSecret: 'test_api_secret', + token: 'test_api_token', + prefixProperties: true, + useNativeSDK: false, + useOldMapping: true, + strictMode: true, + }, + DestinationDefinition: { + DisplayName: 'Mixpanel', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'MP', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'MP', + Transformations: [], + }, + }, + { + batchedRequest: [ + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/engage/', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: { + batch: + '[{"$token":"test_api_token","$distinct_id":"userId06","$set":{"company":["testComp"]},"$ip":"0.0.0.0"}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.mixpanel.com/groups/', + headers: {}, + params: {}, + body: { + JSON: {}, + JSON_ARRAY: { + batch: + '[{"$token":"test_api_token","$group_key":"company","$group_id":"testComp","$set":{"company":"testComp"}}]', + }, + XML: {}, + FORM: {}, + }, + files: {}, + }, + ], + metadata: [ + { + jobId: 6, + additionalProp: 6, + }, + ], + batched: true, + statusCode: 200, + destination: { + Config: { + apiKey: 'dummyApiKey', + apiSecret: 'test_api_secret', + token: 'test_api_token', + prefixProperties: true, + groupKeySettings: [ + { + groupKey: 'company', + }, + ], + strictMode: true, + useNativeSDK: false, + }, + DestinationDefinition: { + DisplayName: 'Mixpanel', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'MP', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'MP', + Transformations: [], + }, + }, + { + metadata: [ + { + jobId: 7, + additionalProp: 7, + }, + ], + batched: false, + statusCode: 400, + error: + 'Group Key is not present. Please ensure that the group key is included in the payload as configured in the `Group Key Settings` in destination', + statTags: { + destType: 'MP', + errorCategory: 'dataValidation', + errorType: 'instrumentation', + feature: 'router', + implementation: 'native', + module: 'destination', + }, + destination: { + Config: { + apiKey: 'dummyApiKey', + apiSecret: 'test_api_secret', + token: 'test_api_token', + prefixProperties: true, + useNativeSDK: false, + groupKeySettings: [ + { + groupKey: 'company', + }, + ], + strictMode: true, + }, + DestinationDefinition: { + DisplayName: 'Mixpanel', + ID: '1WhbSZ6uA3H5ChVifHpfL2H6sie', + Name: 'MP', + }, + Enabled: true, + ID: '1WhcOCGgj9asZu850HvugU2C3Aq', + Name: 'MP', + Transformations: [], + }, + }, + ], + }, + }, + }, + }, + { + name: 'mp', + description: 'Test 1', + feature: 'router', + module: 'destination', + version: 'v0', + input: { + request: { + body: { + input: [ + { + description: 'Page call', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + useOldMapping: true, + strictMode: true, + }), + metadata: { + jobId: 1, + additionalProp: 1, + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + name: 'Contact Us', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: {}, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + messageId: 'dd266c67-9199-4a52-ba32-f46ddde67312', + originalTimestamp: '2020-01-24T06:29:02.358Z', + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53708', + sentAt: '2020-01-24T06:29:02.359Z', + timestamp: '2023-07-06T11:59:02.402+05:30', + type: 'page', + userId: 'hjikl', + }, + }, + { + description: + 'Track: set device id and user id when simplified id merge api is selected', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + identityMergeApi: 'simplified', + strictMode: true, + }), + metadata: { + jobId: 2, + additionalProp: 2, + }, + message: { + anonymousId: 'anonId01', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'ios', + token: 'test_device_token', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.1-beta.1', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'iOS', + version: '8.1.0', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'Product Viewed', + integrations: { + All: true, + }, + userId: 'userId01', + messageId: 'id2', + properties: { + name: 'T-Shirt', + revenue: 18.9, + }, + type: 'track', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2023-07-06T11:59:02.402+05:30', + }, + }, + { + description: 'Identify call to create anonymous user profile', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + useOldMapping: true, + strictMode: true, + }), + metadata: { + jobId: 3, + additionalProp: 3, + }, + message: { + anonymousId: 'e6ab2c5e-2cda-44a9-a962-e2f67df78bca', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstName: 'Mickey', + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2023-07-06T11:59:02.402+05:30', + type: 'identify', + userId: '', + }, + }, + { + description: + 'Identify: append $device: to deviceId while creating the user when simplified id merge api is selected', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + identityMergeApi: 'simplified', + strictMode: true, + }), + metadata: { + jobId: 4, + additionalProp: 4, + }, + message: { + anonymousId: 'anonId01', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + traits: { + city: 'Disney', + country: 'USA', + email: 'mickey@disney.com', + firstName: 'Mickey', + lastName: 'Mouse', + createdAt: '2020-01-23T08:54:02.362Z', + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2023-07-06T11:59:02.402+05:30', + type: 'identify', + }, + }, + { + description: 'Merge call with strict mode enabled', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + strictMode: true, + }), + metadata: { + jobId: 5, + additionalProp: 5, + }, + message: { + anonymousId: '5094f5704b9cf2b3', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'LeanPlumIntegrationAndroid', + namespace: 'com.android.SampleLeanPlum', + version: '1.0', + }, + device: { + id: '5094f5704b9cf2b3', + manufacturer: 'Google', + model: 'Android SDK built for x86', + name: 'generic_x86', + type: 'ios', + token: 'test_device_token', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.1-beta.1', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'iOS', + version: '8.1.0', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + anonymousId: '5094f5704b9cf2b3', + userId: 'test_user_id', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 8.1.0; Android SDK built for x86 Build/OSM1.180201.007)', + }, + event: 'MainActivity', + integrations: { + All: true, + }, + userId: 'test_user_id', + messageId: 'id2', + properties: { + name: 'MainActivity', + automatic: true, + }, + originalTimestamp: '2020-03-12T09:05:03.421Z', + type: 'identify', + sentAt: '2020-03-12T09:05:13.042Z', + }, + }, + { + description: 'Group call', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + groupKeySettings: [ + { + groupKey: 'company', + }, + ], + strictMode: true, + }), + metadata: { + jobId: 6, + additionalProp: 6, + }, + message: { + anonymousId: 'anonId06', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + traits: { + company: 'testComp', + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2023-07-06T11:59:02.402+05:30', + type: 'group', + userId: 'userId06', + }, + }, + { + description: 'Group key not present in traits', + destination: overrideDestination(sampleDestination, { + apiSecret: 'test_api_secret', + token: 'test_api_token', + groupKeySettings: [ + { + groupKey: 'company', + }, + ], + strictMode: true, + }), + metadata: { + jobId: 7, + additionalProp: 7, + }, + message: { + anonymousId: 'anonId06', + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.5', + }, + ip: '0.0.0.0', + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.5', + }, + locale: 'en-GB', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', + }, + integrations: { + All: true, + }, + page: { + path: '/destinations/mixpanel', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/mixpanel', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + messageId: '2536eda4-d638-4c93-8014-8ffe3f083214', + originalTimestamp: '2020-01-24T06:29:02.362Z', + receivedAt: '2020-01-24T11:59:02.403+05:30', + request_ip: '[::1]:53709', + sentAt: '2020-01-24T06:29:02.363Z', + timestamp: '2023-07-06T11:59:02.402+05:30', + type: 'group', + userId: 'userId06', + }, + }, + ], + destType: 'mp', + }, + method: 'POST', }, }, output: { diff --git a/test/integrations/destinations/statsig/processor/data.ts b/test/integrations/destinations/statsig/processor/data.ts index 0c70a9b507..c76ce506dc 100644 --- a/test/integrations/destinations/statsig/processor/data.ts +++ b/test/integrations/destinations/statsig/processor/data.ts @@ -1,1428 +1,1511 @@ export const data = [ - { - "name": "statsig", - "description": "Test 0", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSPonIAEmulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "identify@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9112340345", - "username": "john_sparrow" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "Product Clicked", - "integrations": { - "All": true - }, - "messageId": "1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06", - "properties": { - "revenue": "30", - "currency": "USD", - "quantity": "5", - "test_key_2": { - "test_child_key_1": "test_child_value_1" - }, - "price": "58.0" - }, - "originalTimestamp": "2020-05-25T18:37:10.917Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "track", - "userId": "sample_user_id" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-tHe5ecr37", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSPonIAEmulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "identify@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9112340345", - "username": "john_sparrow" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "Product Clicked", - "integrations": { - "All": true - }, - "messageId": "1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06", - "properties": { - "revenue": "30", - "currency": "USD", - "quantity": "5", - "test_key_2": { - "test_child_key_1": "test_child_value_1" - }, - "price": "58.0" - }, - "originalTimestamp": "2020-05-25T18:37:10.917Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "track", - "userId": "sample_user_id" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 1", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "identify@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "identify", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "identify", - "userId": "sample_user_id" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-tHe5ecr37", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "identify@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "identify", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "identify", - "userId": "sample_user_id" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 2", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "page@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "page", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "page", - "userId": "sample_user_id" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-tHe5ecr37", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "page@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "page", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "page", - "userId": "sample_user_id" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 3", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "screen@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "screen", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "screen", - "userId": "sample_user_id" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-tHe5ecr37", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "screen@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "screen", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "screen", - "userId": "sample_user_id" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 4", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "screen@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "screen", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "screen", - "userId": "sample_user_id" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-4n07h3rsecr3t" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-4n07h3rsecr3t", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "8d872292709c6fbe", - "channel": "mobile", - "context": { - "app": { - "build": "1", - "name": "AMTestProject", - "namespace": "com.rudderstack.android.rudderstack.sampleAndroidApp", - "version": "1.0" - }, - "device": { - "id": "8d872292709c6fbe", - "manufacturer": "Google", - "model": "AOSP on IA Emulator", - "name": "generic_x86_arm", - "type": "android" - }, - "library": { - "name": "com.rudderstack.android.sdk.core", - "version": "1.0.2" - }, - "locale": "en-US", - "network": { - "carrier": "Android", - "bluetooth": false, - "cellular": true, - "wifi": true - }, - "os": { - "name": "Android", - "version": "9" - }, - "screen": { - "density": 420, - "height": 1794, - "width": 1080 - }, - "timezone": "Asia/Kolkata", - "traits": { - "address": { - "city": "Kolkata", - "country": "India", - "postalcode": "700096", - "state": "West bengal", - "street": "Park Street" - }, - "age": "30", - "anonymousId": "8d872292709c6fbe", - "birthday": "2020-05-26", - "createdat": "18th March 2020", - "description": "Premium User for 3 years", - "email": "screen@test.com", - "firstname": "John", - "userId": "sample_user_id", - "lastname": "Sparrow", - "name": "John Sparrow", - "id": "sample_user_id", - "phone": "9876543210", - "username": "john_sparrow", - "quantity": "5", - "price": "56.0" - }, - "userAgent": "Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)" - }, - "event": "screen", - "integrations": { - "All": true - }, - "messageId": "1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9", - "originalTimestamp": "2020-05-25T18:37:10.865Z", - "sentAt": "2020-05-25T18:37:10.917Z", - "type": "screen", - "userId": "sample_user_id" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 5", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "Shehan Study", - "category": "SampleIdentify", - "email": "test@rudderstack.com", - "plan": "Open source", - "logins": 5, - "createdAt": 1599264000 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.5" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 0.8999999761581421 - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign", - "test": "other value" - }, - "page": { - "path": "/destinations/amplitude", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/amplitude", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "alias", - "messageId": "dd46338d-5f83-493b-bd28-3b48f55d0be8", - "originalTimestamp": "2020-10-20T08:14:28.778Z", - "anonymousId": "my-anonymous-id-new", - "userId": "newUserIdAlias", - "integrations": { - "All": true - }, - "previousId": "sampleusrRudder3", - "sentAt": "2020-10-20T08:14:28.778Z" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-tHe5ecr37", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.1.5" - }, - "traits": { - "name": "Shehan Study", - "category": "SampleIdentify", - "email": "test@rudderstack.com", - "plan": "Open source", - "logins": 5, - "createdAt": 1599264000 - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.1.5" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36", - "locale": "en-US", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 0.8999999761581421 - }, - "campaign": { - "source": "google", - "medium": "medium", - "term": "keyword", - "content": "some content", - "name": "some campaign", - "test": "other value" - }, - "page": { - "path": "/destinations/amplitude", - "referrer": "", - "search": "", - "title": "", - "url": "https://docs.rudderstack.com/destinations/amplitude", - "category": "destination", - "initial_referrer": "https://docs.rudderstack.com", - "initial_referring_domain": "docs.rudderstack.com" - } - }, - "type": "alias", - "messageId": "dd46338d-5f83-493b-bd28-3b48f55d0be8", - "originalTimestamp": "2020-10-20T08:14:28.778Z", - "anonymousId": "my-anonymous-id-new", - "userId": "newUserIdAlias", - "integrations": { - "All": true - }, - "previousId": "sampleusrRudder3", - "sentAt": "2020-10-20T08:14:28.778Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 6", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "type": "group", - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://api.statsig.com/v1/webhooks/rudderstack", - "headers": { - "STATSIG-API-KEY": "secret-tHe5ecr37", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "type": "group", - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "statsig", - "description": "Test 7", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "channel": "web", - "context": { - "app": { - "build": "1.0.0", - "name": "RudderLabs JavaScript SDK", - "namespace": "com.rudderlabs.javascript", - "version": "1.0.0" - }, - "library": { - "name": "RudderLabs JavaScript SDK", - "version": "1.0.0" - }, - "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", - "locale": "en-US", - "ip": "0.0.0.0", - "os": { - "name": "", - "version": "" - }, - "screen": { - "density": 2 - } - }, - "messageId": "84e26acc-56a5-4835-8233-591137fca468", - "session_id": "3049dc4c-5a95-4ccd-a3e7-d74a7e411f22", - "originalTimestamp": "2019-10-14T09:03:17.562Z", - "anonymousId": "123456", - "userId": "123456", - "type": "NOT_A_TYPE", - "traits": { - "anonymousId": "123456", - "email": "test@rudderstack.com", - "address": { - "city": "kolkata", - "country": "India", - "postalCode": 712136, - "state": "WB", - "street": "" - } - }, - "integrations": { - "All": true - }, - "sentAt": "2019-10-14T09:03:22.563Z" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "secretKey": "secret-tHe5ecr37" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "statusCode": 500, - "error": "Cannot read properties of undefined (reading 'destinationId')", - "statTags": { - "errorCategory": "transformation", - "destType": "STATSIG", - "module": "destination", - "implementation": "cdkV1", - "feature": "processor" - } - } - ] - } - } - } -] \ No newline at end of file + { + name: 'statsig', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSPonIAEmulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'identify@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9112340345', + username: 'john_sparrow', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'Product Clicked', + integrations: { + All: true, + }, + messageId: '1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06', + properties: { + revenue: '30', + currency: 'USD', + quantity: '5', + test_key_2: { + test_child_key_1: 'test_child_value_1', + }, + price: '58.0', + }, + originalTimestamp: '2020-05-25T18:37:10.917Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'track', + userId: 'sample_user_id', + }, + destination: { + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-tHe5ecr37', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSPonIAEmulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'identify@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9112340345', + username: 'john_sparrow', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'Product Clicked', + integrations: { + All: true, + }, + messageId: '1590431830915-73bed370-5889-436d-9a9e-0c0e0c809d06', + properties: { + revenue: '30', + currency: 'USD', + quantity: '5', + test_key_2: { + test_child_key_1: 'test_child_value_1', + }, + price: '58.0', + }, + originalTimestamp: '2020-05-25T18:37:10.917Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'track', + userId: 'sample_user_id', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'identify@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'identify', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'identify', + userId: 'sample_user_id', + }, + destination: { + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-tHe5ecr37', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'identify@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'identify', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'identify', + userId: 'sample_user_id', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'page@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'page', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'page', + userId: 'sample_user_id', + }, + destination: { + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-tHe5ecr37', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'page@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'page', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'page', + userId: 'sample_user_id', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'screen@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'screen', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'screen', + userId: 'sample_user_id', + }, + destination: { + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-tHe5ecr37', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'screen@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'screen', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'screen', + userId: 'sample_user_id', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 4', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'screen@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'screen', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'screen', + userId: 'sample_user_id', + }, + destination: { + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + }, + }, + Config: { + secretKey: 'secret-4n07h3rsecr3t', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-4n07h3rsecr3t', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: '8d872292709c6fbe', + channel: 'mobile', + context: { + app: { + build: '1', + name: 'AMTestProject', + namespace: 'com.rudderstack.android.rudderstack.sampleAndroidApp', + version: '1.0', + }, + device: { + id: '8d872292709c6fbe', + manufacturer: 'Google', + model: 'AOSP on IA Emulator', + name: 'generic_x86_arm', + type: 'android', + }, + library: { + name: 'com.rudderstack.android.sdk.core', + version: '1.0.2', + }, + locale: 'en-US', + network: { + carrier: 'Android', + bluetooth: false, + cellular: true, + wifi: true, + }, + os: { + name: 'Android', + version: '9', + }, + screen: { + density: 420, + height: 1794, + width: 1080, + }, + timezone: 'Asia/Kolkata', + traits: { + address: { + city: 'Kolkata', + country: 'India', + postalcode: '700096', + state: 'West bengal', + street: 'Park Street', + }, + age: '30', + anonymousId: '8d872292709c6fbe', + birthday: '2020-05-26', + createdat: '18th March 2020', + description: 'Premium User for 3 years', + email: 'screen@test.com', + firstname: 'John', + userId: 'sample_user_id', + lastname: 'Sparrow', + name: 'John Sparrow', + id: 'sample_user_id', + phone: '9876543210', + username: 'john_sparrow', + quantity: '5', + price: '56.0', + }, + userAgent: + 'Dalvik/2.1.0 (Linux; U; Android 9; AOSP on IA Emulator Build/PSR1.180720.117)', + }, + event: 'screen', + integrations: { + All: true, + }, + messageId: '1590431830865-3be680d6-7dcd-4b05-8460-f3acc30046d9', + originalTimestamp: '2020-05-25T18:37:10.865Z', + sentAt: '2020-05-25T18:37:10.917Z', + type: 'screen', + userId: 'sample_user_id', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 5', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.5', + }, + traits: { + name: 'Shehan Study', + category: 'SampleIdentify', + email: 'test@rudderstack.com', + plan: 'Open source', + logins: 5, + createdAt: 1599264000, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.5', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 0.8999999761581421, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + test: 'other value', + }, + page: { + path: '/destinations/amplitude', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/amplitude', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'alias', + messageId: 'dd46338d-5f83-493b-bd28-3b48f55d0be8', + originalTimestamp: '2020-10-20T08:14:28.778Z', + anonymousId: 'my-anonymous-id-new', + userId: 'newUserIdAlias', + integrations: { + All: true, + }, + previousId: 'sampleusrRudder3', + sentAt: '2020-10-20T08:14:28.778Z', + }, + destination: { + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-tHe5ecr37', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.1.5', + }, + traits: { + name: 'Shehan Study', + category: 'SampleIdentify', + email: 'test@rudderstack.com', + plan: 'Open source', + logins: 5, + createdAt: 1599264000, + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.1.5', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36', + locale: 'en-US', + os: { + name: '', + version: '', + }, + screen: { + density: 0.8999999761581421, + }, + campaign: { + source: 'google', + medium: 'medium', + term: 'keyword', + content: 'some content', + name: 'some campaign', + test: 'other value', + }, + page: { + path: '/destinations/amplitude', + referrer: '', + search: '', + title: '', + url: 'https://docs.rudderstack.com/destinations/amplitude', + category: 'destination', + initial_referrer: 'https://docs.rudderstack.com', + initial_referring_domain: 'docs.rudderstack.com', + }, + }, + type: 'alias', + messageId: 'dd46338d-5f83-493b-bd28-3b48f55d0be8', + originalTimestamp: '2020-10-20T08:14:28.778Z', + anonymousId: 'my-anonymous-id-new', + userId: 'newUserIdAlias', + integrations: { + All: true, + }, + previousId: 'sampleusrRudder3', + sentAt: '2020-10-20T08:14:28.778Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 6', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + type: 'group', + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://api.statsig.com/v1/webhooks/rudderstack', + headers: { + 'STATSIG-API-KEY': 'secret-tHe5ecr37', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + type: 'group', + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: '', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'statsig', + description: 'Test 7', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + channel: 'web', + context: { + app: { + build: '1.0.0', + name: 'RudderLabs JavaScript SDK', + namespace: 'com.rudderlabs.javascript', + version: '1.0.0', + }, + library: { + name: 'RudderLabs JavaScript SDK', + version: '1.0.0', + }, + userAgent: + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', + locale: 'en-US', + ip: '0.0.0.0', + os: { + name: '', + version: '', + }, + screen: { + density: 2, + }, + }, + messageId: '84e26acc-56a5-4835-8233-591137fca468', + session_id: '3049dc4c-5a95-4ccd-a3e7-d74a7e411f22', + originalTimestamp: '2019-10-14T09:03:17.562Z', + anonymousId: '123456', + userId: '123456', + type: 'NOT_A_TYPE', + traits: { + anonymousId: '123456', + email: 'test@rudderstack.com', + address: { + city: 'kolkata', + country: 'India', + postalCode: 712136, + state: 'WB', + street: '', + }, + }, + integrations: { + All: true, + }, + sentAt: '2019-10-14T09:03:22.563Z', + }, + destination: { + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + }, + Config: { + secretKey: 'secret-tHe5ecr37', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + statusCode: 400, + error: + 'Bad event. Original error: message type "NOT_A_TYPE" not supported for "statsig"', + statTags: { + errorCategory: 'dataValidation', + errorType: 'instrumentation', + destType: 'STATSIG', + module: 'destination', + implementation: 'cdkV1', + destinationId: 'd1', + workspaceId: 'w1', + feature: 'processor', + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/destinations/variance/processor/data.ts b/test/integrations/destinations/variance/processor/data.ts index 960ec59a86..ae33b75e5f 100644 --- a/test/integrations/destinations/variance/processor/data.ts +++ b/test/integrations/destinations/variance/processor/data.ts @@ -1,921 +1,953 @@ export const data = [ - { - "name": "variance", - "description": "Test 0", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "webhookUrl": "http://6b0e6a60.ngrok.io", - "authHeader": "Basic MVA4dUtGOF=" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "http://6b0e6a60.ngrok.io", - "headers": { - "authorization": "Basic MVA4dUtGOF=", - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "variance", - "description": "Test 1", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "webhookUrl": "https://6b0e6a60.ngrok.io/n" - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://6b0e6a60.ngrok.io/n", - "headers": { - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "variance", - "description": "Test 2", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "webhookUrl": "https://6b0e6a60." - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "https://6b0e6a60.", - "headers": { - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "user_properties": { - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "fb_profile": "0", - "game_fps": 30, - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": false, - "level": 6, - "lifetime_gem_balance": 0, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2 - } - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "statusCode": 200 - } - ] - } - } - }, - { - "name": "variance", - "description": "Test 3", - "feature": "processor", - "module": "destination", - "version": "v0", - "input": { - "request": { - "body": [ - { - "message": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - } - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "request_ip": "127.0.0.1" - }, - "destination": { - "DestinationDefinition": { - "Config": { - "cdkEnabled": true - } - }, - "Config": { - "webhookUrl": "http://6b0e6a60.ngrok.io", - "header": [ - { - "from": "test1", - "to": "value1" - }, - { - "from": "test2", - "to": "value2" - } - ] - } - } - } - ] - } - }, - "output": { - "response": { - "status": 200, - "body": [ - { - "output": { - "version": "1", - "type": "REST", - "method": "POST", - "endpoint": "http://6b0e6a60.ngrok.io", - "headers": { - "content-type": "application/json" - }, - "params": {}, - "body": { - "JSON": { - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "context": { - "device": { - "id": "df16bffa-5c3d-4fbb-9bce-3bab098129a7R", - "manufacturer": "Xiaomi", - "model": "Redmi 6", - "name": "xiaomi" - }, - "network": { - "carrier": "Banglalink" - }, - "os": { - "name": "android", - "version": "8.1.0" - }, - "traits": { - "address": { - "city": "Dhaka", - "country": "Bangladesh" - }, - "anonymousId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "ip": "127.0.0.1" - }, - "event": "spin_result", - "integrations": { - "All": true - }, - "message_id": "a80f82be-9bdc-4a9f-b2a5-15621ee41df8", - "properties": { - "additional_bet_index": 0, - "battle_id": "N/A", - "bet_amount": 9, - "bet_level": 1, - "bet_multiplier": 1, - "coin_balance": 9466052, - "current_module_name": "CasinoGameModule", - "days_in_game": 0, - "extra_param": "N/A", - "fb_profile": "0", - "featureGameType": "N/A", - "game_fps": 30, - "game_id": "fireEagleBase", - "game_name": "FireEagleSlots", - "gem_balance": 0, - "graphicsQuality": "HD", - "idfa": "2bf99787-33d2-4ae2-a76a-c49672f97252", - "internetReachability": "ReachableViaLocalAreaNetwork", - "isLowEndDevice": "False", - "is_auto_spin": "False", - "is_turbo": "False", - "isf": "False", - "ishighroller": "False", - "jackpot_win_amount": 90, - "jackpot_win_type": "Silver", - "level": 6, - "lifetime_gem_balance": 0, - "no_of_spin": 1, - "player_total_battles": 0, - "player_total_shields": 0, - "start_date": "2019-08-01", - "total_payments": 0, - "tournament_id": "T1561970819", - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1", - "versionSessionCount": 2, - "win_amount": 0 - }, - "timestamp": "2019-09-01T15:46:51.693229+05:30", - "originalTimestamp": "2019-09-01T15:46:51.693229+05:30", - "sentAt": "2019-09-01T15:46:51.693229+05:30", - "type": "track", - "request_ip": "127.0.0.1" - }, - "JSON_ARRAY": {}, - "XML": {}, - "FORM": {} - }, - "files": {}, - "userId": "c82cbdff-e5be-4009-ac78-cdeea09ab4b1" - }, - "statusCode": 200 - } - ] - } - } - } -] \ No newline at end of file + { + name: 'variance', + description: 'Test 0', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + }, + }, + Config: { + webhookUrl: 'http://6b0e6a60.ngrok.io', + authHeader: 'Basic MVA4dUtGOF=', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'http://6b0e6a60.ngrok.io', + headers: { + authorization: 'Basic MVA4dUtGOF=', + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'variance', + description: 'Test 1', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + }, + Config: { + webhookUrl: 'https://6b0e6a60.ngrok.io/n', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://6b0e6a60.ngrok.io/n', + headers: { + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'variance', + description: 'Test 2', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + destination: { + DestinationDefinition: { + Config: { + cdkV2Enabled: true, + }, + }, + Config: { + webhookUrl: 'https://6b0e6a60.', + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'https://6b0e6a60.', + headers: { + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + user_properties: { + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + fb_profile: '0', + game_fps: 30, + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: false, + level: 6, + lifetime_gem_balance: 0, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + }, + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, + { + name: 'variance', + description: 'Test 3', + feature: 'processor', + module: 'destination', + version: 'v0', + input: { + request: { + body: [ + { + message: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + request_ip: '127.0.0.1', + }, + destination: { + DestinationDefinition: { + Config: { + cdkEnabled: true, + }, + }, + Config: { + webhookUrl: 'http://6b0e6a60.ngrok.io', + header: [ + { + from: 'test1', + to: 'value1', + }, + { + from: 'test2', + to: 'value2', + }, + ], + }, + }, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + output: { + response: { + status: 200, + body: [ + { + output: { + version: '1', + type: 'REST', + method: 'POST', + endpoint: 'http://6b0e6a60.ngrok.io', + headers: { + 'content-type': 'application/json', + }, + params: {}, + body: { + JSON: { + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + context: { + device: { + id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R', + manufacturer: 'Xiaomi', + model: 'Redmi 6', + name: 'xiaomi', + }, + network: { + carrier: 'Banglalink', + }, + os: { + name: 'android', + version: '8.1.0', + }, + traits: { + address: { + city: 'Dhaka', + country: 'Bangladesh', + }, + anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + ip: '127.0.0.1', + }, + event: 'spin_result', + integrations: { + All: true, + }, + message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8', + properties: { + additional_bet_index: 0, + battle_id: 'N/A', + bet_amount: 9, + bet_level: 1, + bet_multiplier: 1, + coin_balance: 9466052, + current_module_name: 'CasinoGameModule', + days_in_game: 0, + extra_param: 'N/A', + fb_profile: '0', + featureGameType: 'N/A', + game_fps: 30, + game_id: 'fireEagleBase', + game_name: 'FireEagleSlots', + gem_balance: 0, + graphicsQuality: 'HD', + idfa: '2bf99787-33d2-4ae2-a76a-c49672f97252', + internetReachability: 'ReachableViaLocalAreaNetwork', + isLowEndDevice: 'False', + is_auto_spin: 'False', + is_turbo: 'False', + isf: 'False', + ishighroller: 'False', + jackpot_win_amount: 90, + jackpot_win_type: 'Silver', + level: 6, + lifetime_gem_balance: 0, + no_of_spin: 1, + player_total_battles: 0, + player_total_shields: 0, + start_date: '2019-08-01', + total_payments: 0, + tournament_id: 'T1561970819', + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + versionSessionCount: 2, + win_amount: 0, + }, + timestamp: '2019-09-01T15:46:51.693229+05:30', + originalTimestamp: '2019-09-01T15:46:51.693229+05:30', + sentAt: '2019-09-01T15:46:51.693229+05:30', + type: 'track', + request_ip: '127.0.0.1', + }, + JSON_ARRAY: {}, + XML: {}, + FORM: {}, + }, + files: {}, + userId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1', + }, + statusCode: 200, + metadata: { + destinationId: 'd1', + workspaceId: 'w1', + }, + }, + ], + }, + }, + }, +]; diff --git a/test/integrations/sources/ortto/data.ts b/test/integrations/sources/ortto/data.ts new file mode 100644 index 0000000000..6feed3f43a --- /dev/null +++ b/test/integrations/sources/ortto/data.ts @@ -0,0 +1,393 @@ +import utils from '../../../../src/v0/util'; + +const defaultMockFns = () => { + jest.spyOn(utils, 'generateUUID').mockReturnValue('97fcd7b2-cc24-47d7-b776-057b7b199513'); +}; + +export const data = [ + { + name: 'ortto', + description: 'Simple track call', + module: 'source', + version: 'v0', + input: { + request: { + body: [ + { + activity: { + id: '00651b946bfef7e80478efee', + field_id: 'act::s-all', + created: '2023-10-03T04:11:23Z', + attr: { + 'str::is': 'API', + 'str::s-ctx': 'Subscribed via API', + }, + }, + contact: { + contact_id: '00651b946baa9be6b2edad00', + email: 'abhi@example.com', + }, + id: '00651b946cef87c7af64f4f3', + time: '2023-10-03T04:11:24.25726779Z', + webhook_id: '651b8aec8002153e16319fd3', + }, + ], + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: [ + { + context: { + library: { name: 'unknown', version: 'unknown' }, + integration: { name: 'ortto' }, + traits: { email: 'abhi@example.com' }, + externalId: [ + { + id: '00651b946baa9be6b2edad00', + type: 'orttoPersonId', + }, + ], + }, + event: 'Resubscribe globally', + integrations: { ortto: false }, + type: 'track', + anonymousId: '97fcd7b2-cc24-47d7-b776-057b7b199513', + messageId: '00651b946cef87c7af64f4f3', + originalTimestamp: '2023-10-03T04:11:24.000Z', + properties: { + 'activity.id': '00651b946bfef7e80478efee', + 'activity.created': '2023-10-03T04:11:23Z', + 'activity.attr.str::is': 'API', + 'activity.attr.str::s-ctx': 'Subscribed via API', + webhook_id: '651b8aec8002153e16319fd3', + }, + }, + ], + }, + }, + ], + }, + }, + mockFns: () => { + defaultMockFns(); + }, + }, + { + name: 'ortto', + description: 'Simple track call', + module: 'source', + version: 'v0', + input: { + request: { + body: [ + { + activity: { + id: '00651b946bfef7e80478efee', + field_id: 'act::s-all', + created: '2023-10-03T04:11:23Z', + attr: { + 'str::is': 'API', + 'str::s-ctx': 'Subscribed via API', + }, + }, + contact: { + external_id: 'user_x', + city: { + name: 'Kolkata', + id: 0, + lat: 37751000, + lng: -97822000, + }, + country: { + name: 'United States', + id: 6252001, + lat: 0, + lng: 0, + }, + email: 'xyz@email.com', + first_name: 'Ujjwal', + last_name: 'Ujjwal', + birthday: { + year: 1980, + month: 12, + day: 11, + timezone: 'Australia/Sydney', + }, + phone_number: { + c: '91', + n: '401234567', + }, + }, + id: '00651b946cef87c7af64f4f3', + time: '2023-10-03T04:11:24.25726779Z', + webhook_id: '651b8aec8002153e16319fd3', + }, + ], + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: [ + { + userId: 'user_x', + context: { + library: { name: 'unknown', version: 'unknown' }, + integration: { name: 'ortto' }, + traits: { + email: 'xyz@email.com', + birthday: '1980-12-11', + firstName: 'Ujjwal', + lastName: 'Ujjwal', + phone: '91401234567', + address: { + city: 'Kolkata', + country: 'United States', + }, + }, + }, + event: 'Resubscribe globally', + integrations: { ortto: false }, + type: 'track', + messageId: '00651b946cef87c7af64f4f3', + originalTimestamp: '2023-10-03T04:11:24.000Z', + properties: { + 'activity.id': '00651b946bfef7e80478efee', + 'activity.created': '2023-10-03T04:11:23Z', + 'activity.attr.str::is': 'API', + 'activity.attr.str::s-ctx': 'Subscribed via API', + 'contact.birthday.timezone': 'Australia/Sydney', + 'contact.city.id': 0, + 'contact.city.lat': 37751000, + 'contact.city.lng': -97822000, + 'contact.country.id': 6252001, + 'contact.country.lat': 0, + 'contact.country.lng': 0, + webhook_id: '651b8aec8002153e16319fd3', + }, + }, + ], + }, + }, + ], + }, + }, + mockFns: () => { + defaultMockFns(); + }, + }, + { + name: 'ortto', + description: 'Simple track call with unknown field id', + module: 'source', + version: 'v0', + input: { + request: { + body: [ + { + activity: { + id: '00651b946bfef7e80478efee', + field_id: 'act::s-ccc', + created: '2023-10-03T04:11:23Z', + attr: { + 'str::is': 'API', + 'str::s-ctx': 'Subscribed via API', + }, + }, + contact: { + external_id: 'user_x', + city: { + name: 'Kolkata', + id: 0, + lat: 37751000, + lng: -97822000, + }, + contact_id: '006524f0b8d370050056e400', + country: { + name: 'United States', + id: 6252001, + lat: 0, + lng: 0, + }, + email: 'xyz@email.com', + first_name: 'Ujjwal', + last_name: 'Ujjwal', + birthday: { + year: 1980, + month: 3, + day: 4, + timezone: 'Australia/Sydney', + }, + phone_number: { + c: '91', + n: '401234567', + }, + }, + id: '00651b946cef87c7af64f4f3', + time: '2023-10-03T04:11:24.25726779Z', + webhook_id: '651b8aec8002153e16319fd3', + }, + ], + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + output: { + batch: [ + { + userId: 'user_x', + context: { + externalId: [ + { + id: '006524f0b8d370050056e400', + type: 'orttoPersonId', + }, + ], + library: { name: 'unknown', version: 'unknown' }, + integration: { name: 'ortto' }, + traits: { + email: 'xyz@email.com', + birthday: '1980-03-04', + firstName: 'Ujjwal', + lastName: 'Ujjwal', + phone: '91401234567', + address: { + city: 'Kolkata', + country: 'United States', + }, + }, + }, + event: 'custom event triggered', + integrations: { ortto: false }, + type: 'track', + messageId: '00651b946cef87c7af64f4f3', + originalTimestamp: '2023-10-03T04:11:24.000Z', + properties: { + 'activity.id': '00651b946bfef7e80478efee', + 'activity.created': '2023-10-03T04:11:23Z', + 'activity.attr.str::is': 'API', + 'activity.attr.str::s-ctx': 'Subscribed via API', + 'contact.birthday.timezone': 'Australia/Sydney', + 'contact.city.id': 0, + 'contact.city.lat': 37751000, + 'contact.city.lng': -97822000, + 'contact.country.id': 6252001, + 'contact.country.lat': 0, + 'contact.country.lng': 0, + webhook_id: '651b8aec8002153e16319fd3', + }, + }, + ], + }, + }, + ], + }, + }, + mockFns: () => { + defaultMockFns(); + }, + }, + { + name: 'ortto', + description: 'Simple track call with unknown field id', + module: 'source', + version: 'v0', + input: { + request: { + body: [ + { + activity: { + id: '00651b946bfef7e80478efee', + field_id: 'act::test_webhook', + created: '2023-10-03T04:11:23Z', + attr: { + 'str::is': 'API', + 'str::s-ctx': 'Subscribed via API', + }, + }, + contact: { + external_id: 'user_x', + city: { + name: 'Kolkata', + id: 0, + lat: 37751000, + lng: -97822000, + }, + contact_id: '006524f0b8d370050056e400', + country: { + name: 'United States', + id: 6252001, + lat: 0, + lng: 0, + }, + email: 'xyz@email.com', + first_name: 'Ujjwal', + last_name: 'Ujjwal', + birthday: { + year: 1980, + month: 3, + day: 4, + timezone: 'Australia/Sydney', + }, + phone_number: { + c: '91', + n: '401234567', + }, + }, + id: '00651b946cef87c7af64f4f3', + time: '2023-10-03T04:11:24.25726779Z', + webhook_id: '651b8aec8002153e16319fd3', + }, + ], + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + }, + pathSuffix: '', + }, + output: { + response: { + status: 200, + body: [ + { + outputToSource: { + body: 'eyJhY3Rpdml0eSI6eyJpZCI6IjAwNjUxYjk0NmJmZWY3ZTgwNDc4ZWZlZSIsImZpZWxkX2lkIjoiYWN0Ojp0ZXN0X3dlYmhvb2siLCJjcmVhdGVkIjoiMjAyMy0xMC0wM1QwNDoxMToyM1oiLCJhdHRyIjp7InN0cjo6aXMiOiJBUEkiLCJzdHI6OnMtY3R4IjoiU3Vic2NyaWJlZCB2aWEgQVBJIn19LCJjb250YWN0Ijp7ImV4dGVybmFsX2lkIjoidXNlcl94IiwiY2l0eSI6eyJuYW1lIjoiS29sa2F0YSIsImlkIjowLCJsYXQiOjM3NzUxMDAwLCJsbmciOi05NzgyMjAwMH0sImNvbnRhY3RfaWQiOiIwMDY1MjRmMGI4ZDM3MDA1MDA1NmU0MDAiLCJjb3VudHJ5Ijp7Im5hbWUiOiJVbml0ZWQgU3RhdGVzIiwiaWQiOjYyNTIwMDEsImxhdCI6MCwibG5nIjowfSwiZW1haWwiOiJ4eXpAZW1haWwuY29tIiwiZmlyc3RfbmFtZSI6IlVqandhbCIsImxhc3RfbmFtZSI6IlVqandhbCIsImJpcnRoZGF5Ijp7InllYXIiOjE5ODAsIm1vbnRoIjozLCJkYXkiOjQsInRpbWV6b25lIjoiQXVzdHJhbGlhL1N5ZG5leSJ9LCJwaG9uZV9udW1iZXIiOnsiYyI6IjkxIiwibiI6IjQwMTIzNDU2NyJ9fSwiaWQiOiIwMDY1MWI5NDZjZWY4N2M3YWY2NGY0ZjMiLCJ0aW1lIjoiMjAyMy0xMC0wM1QwNDoxMToyNC4yNTcyNjc3OVoiLCJ3ZWJob29rX2lkIjoiNjUxYjhhZWM4MDAyMTUzZTE2MzE5ZmQzIn0=', + contentType: 'application/json', + }, + statusCode: 200, + }, + ], + }, + }, + mockFns: () => { + defaultMockFns(); + }, + }, +]; diff --git a/test/integrations/testUtils.ts b/test/integrations/testUtils.ts index 13fc7c7f75..f5be8107ed 100644 --- a/test/integrations/testUtils.ts +++ b/test/integrations/testUtils.ts @@ -3,12 +3,16 @@ import { join } from 'path'; import { MockHttpCallsData, TestCaseData } from './testTypes'; import MockAdapter from 'axios-mock-adapter'; import isMatch from 'lodash/isMatch'; +import { OptionValues } from 'commander'; -export const getTestDataFilePaths = (dirPath: string, destination: string = ''): string[] => { +export const getTestDataFilePaths = (dirPath: string, opts: OptionValues): string[] => { const globPattern = join(dirPath, '**', 'data.ts'); let testFilePaths = globSync(globPattern); - if (destination) { - testFilePaths = testFilePaths.filter((testFile) => testFile.includes(destination)); + if (opts.destination) { + testFilePaths = testFilePaths.filter((testFile) => testFile.includes(opts.destination)); + } + if (opts.feature) { + testFilePaths = testFilePaths.filter((testFile) => testFile.includes(opts.feature)); } return testFilePaths; };